| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 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" |
| tierno | c312cc1 | 2018-05-04 15:11:26 +0200 | [diff] [blame] | 8 | VERSION = "4.0.0rc2" |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 9 | README = open(os.path.join(here, 'README.rst')).read() |
| 10 | |
| 11 | setup( |
| tierno | f724940 | 2018-05-09 16:29:44 +0200 | [diff] [blame] | 12 | # python_requires='>=3.5', |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 13 | name=_name, |
| 14 | description='OSM common utilities', |
| 15 | long_description=README, |
| 16 | # version_command=('git describe --tags --long --dirty', 'pep440-git'), |
| 17 | version=VERSION, |
| 18 | # python_requires='>3.5', |
| 19 | author='ETSI OSM', |
| 20 | author_email='alfonso.tiernosepulveda@telefonica.com', |
| 21 | maintainer='Alfonso Tierno', |
| 22 | maintainer_email='alfonso.tiernosepulveda@telefonica.com', |
| 23 | url='https://osm.etsi.org/gitweb/?p=osm/common.git;a=summary', |
| 24 | license='Apache 2.0', |
| tierno | f724940 | 2018-05-09 16:29:44 +0200 | [diff] [blame] | 25 | # setup_requires=['setuptools-version-command'], |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 26 | |
| 27 | packages=[_name], |
| 28 | include_package_data=True, |
| 29 | # scripts=['nbi.py'], |
| 30 | |
| 31 | install_requires=[ |
| 32 | 'pymongo', |
| 33 | 'aiokafka', |
| 34 | 'PyYAML', |
| tierno | 347bed3 | 2018-08-23 10:33:01 +0000 | [diff] [blame] | 35 | # 'pip', |
| tierno | 5c01261 | 2018-04-19 16:01:59 +0200 | [diff] [blame] | 36 | ], |
| 37 | ) |