| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| 2 | |
| 3 | from setuptools import setup #, find_packages |
| 4 | |
| 5 | _name = "osm_nbi" |
| 6 | |
| 7 | setup( |
| 8 | name=_name, |
| 9 | description='OSM North Bound Interface', |
| 10 | # version_command=('git describe --tags --long --dirty', 'pep440-git'), |
| 11 | version="0.1.0", |
| 12 | author='ETSI OSM', |
| 13 | author_email='alfonso.tiernosepulveda@telefonica.com', |
| 14 | maintainer='Alfonso Tierno', |
| 15 | maintainer_email='alfonso.tiernosepulveda@telefonica.com', |
| 16 | url='https://osm.etsi.org/gitweb/?p=osm/NBI.git;a=summary', |
| 17 | license='Apache 2.0', |
| 18 | |
| 19 | packages=[_name], # find_packages(), |
| 20 | include_package_data=True, |
| 21 | data_files=[('/etc/osm/', ['osm_nbi/nbi.cfg']), |
| 22 | ('/etc/systemd/system/', ['osm_nbi/osm-nbi.service']), |
| 23 | ], |
| 24 | |
| 25 | install_requires=[ |
| Mike Marchetti | c678d04 | 2018-04-18 13:51:27 -0400 | [diff] [blame] | 26 | 'CherryPy', 'pymongo', 'jsonschema' |
| tierno | c94c3df | 2018-02-09 15:38:54 +0100 | [diff] [blame] | 27 | ], |
| 28 | # setup_requires=['setuptools-version-command'], |
| 29 | # test_suite='nose.collector', |
| 30 | # entry_points=''' |
| 31 | # [console_scripts] |
| 32 | # osm=osm_nbi.nbi:nbi |
| 33 | # ''', |
| 34 | ) |