fixing imports to get ready for module distribution.
[osm/common.git] / setup.py
1 #!/usr/bin/env python3
2
3 import os
4 from setuptools import setup
5
6 here = os.path.abspath(os.path.dirname(__file__))
7 _name = "osm_common"
8 VERSION = "4.0.0rc1"
9 README = open(os.path.join(here, 'README.rst')).read()
10
11 setup(
12 name=_name,
13 description='OSM common utilities',
14 long_description=README,
15 # version_command=('git describe --tags --long --dirty', 'pep440-git'),
16 version=VERSION,
17 # python_requires='>3.5',
18 author='ETSI OSM',
19 author_email='alfonso.tiernosepulveda@telefonica.com',
20 maintainer='Alfonso Tierno',
21 maintainer_email='alfonso.tiernosepulveda@telefonica.com',
22 url='https://osm.etsi.org/gitweb/?p=osm/common.git;a=summary',
23 license='Apache 2.0',
24
25 packages=[_name],
26 include_package_data=True,
27 # scripts=['nbi.py'],
28
29 install_requires=[
30 'pymongo',
31 'aiokafka',
32 'PyYAML',
33 ],
34 )