blob: 25e36fdb6f3ac0e49f29a21bb7b34fee28d0cd2c [file] [log] [blame]
tierno5c012612018-04-19 16:01:59 +02001#!/usr/bin/env python3
tierno87858ca2018-10-08 16:30:15 +02002# -*- coding: utf-8 -*-
3
4# Copyright 2018 Telefonica S.A.
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
15# implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18
tierno5c012612018-04-19 16:01:59 +020019
20import os
21from setuptools import setup
22
23here = os.path.abspath(os.path.dirname(__file__))
24_name = "osm_common"
tierno5c012612018-04-19 16:01:59 +020025README = open(os.path.join(here, 'README.rst')).read()
26
27setup(
tiernof7249402018-05-09 16:29:44 +020028 # python_requires='>=3.5',
tierno5c012612018-04-19 16:01:59 +020029 name=_name,
30 description='OSM common utilities',
31 long_description=README,
Mike Marchetti64fdc4f2018-10-09 12:00:05 -040032 version_command=('git describe --tags --long --dirty --match v*', 'pep440-git-full'),
tierno6aacb2e2018-10-01 15:28:59 +020033 # version=VERSION,
tierno5c012612018-04-19 16:01:59 +020034 # python_requires='>3.5',
35 author='ETSI OSM',
36 author_email='alfonso.tiernosepulveda@telefonica.com',
37 maintainer='Alfonso Tierno',
38 maintainer_email='alfonso.tiernosepulveda@telefonica.com',
39 url='https://osm.etsi.org/gitweb/?p=osm/common.git;a=summary',
40 license='Apache 2.0',
tiernob3f024d2018-10-09 18:20:13 +020041 setup_requires=['setuptools-version-command'],
tierno5c012612018-04-19 16:01:59 +020042
43 packages=[_name],
44 include_package_data=True,
45 # scripts=['nbi.py'],
46
47 install_requires=[
48 'pymongo',
49 'aiokafka',
50 'PyYAML',
tierno14521832018-10-24 10:53:37 +020051 'pycrypto',
tierno5c012612018-04-19 16:01:59 +020052 ],
53)