Allow ns-creation params: vim-network, multisite deployement
[osm/NBI.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_nbi"
8 VERSION = "0.1.3"
9 README = open(os.path.join(here, 'README.rst')).read()
10
11 setup(
12 name=_name,
13 description='OSM North Bound Interface',
14 long_description=README,
15 # version_command=('git describe --tags --long --dirty', 'pep440-git'),
16 version=VERSION,
17 python_requires='>3.5.0',
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/NBI.git;a=summary',
23 license='Apache 2.0',
24
25 packages=[_name],
26 include_package_data=True,
27 data_files=[('/etc/osm/', ['osm_nbi/nbi.cfg']),
28 ('/etc/systemd/system/', ['osm_nbi/osm-nbi.service']),
29 ],
30
31 install_requires=[
32 'CherryPy', 'pymongo', 'jsonschema'
33 # 'PyYAML',
34 ],
35 # setup_requires=['setuptools-version-command'],
36 # test_suite='nose.collector',
37 # entry_points='''
38 # [console_scripts]
39 # osm=osm_nbi.nbi:nbi
40 # ''',
41 )
42