Bug 573 VCD: Ensure that more than 2 NICs can get connected to VCD VM
[osm/RO.git] / setup.py
1 #!/usr/bin/env python
2
3 #from distutils.core import setup
4 #from distutils.command.install_data import install_data
5 from setuptools import setup
6 from os import system
7 #import glob
8
9 _name = 'osm_ro'
10 _description = 'OSM Resource Orchestrator'
11 _author = 'ETSI OSM'
12 _author_email = 'alfonso.tiernosepulveda@telefonica.com'
13 _maintainer = 'garciadeblas'
14 _maintainer_email = 'gerardo.garciadeblas@telefonica.com'
15 _license = 'Apache 2.0'
16 _url = 'https://osm.etsi.org/gitweb/?p=osm/RO.git;a=summary'
17 _requirements = [
18 "PyYAML",
19 "bottle",
20 #"mysqlclient",
21 #"MySQLdb",
22 "jsonschema",
23 "paramiko",
24 "argcomplete",
25 "requests",
26 "logutils",
27 "python-openstackclient",
28 "python-novaclient",
29 "python-keystoneclient",
30 "python-glanceclient",
31 "python-neutronclient",
32 "python-cinderclient",
33 #"pyvcloud",
34 #"progressbar",
35 "prettytable",
36 #"pyvmomi",
37 "boto",
38 #"lib_osm_openvim",
39 #"osm_im",
40 "pycrypto",
41 "netaddr",
42 ]
43
44 setup(name=_name,
45 version_command=('git describe --match v*', 'pep440-git-full'),
46 description = _description,
47 long_description = open('README.rst').read(),
48 author = _author,
49 author_email = _author_email,
50 maintainer = _maintainer,
51 maintainer_email = _maintainer_email,
52 url = _url,
53 license = _license,
54 packages = [_name],
55 #packages = ['osm_ro', 'osm_roclient'],
56 package_dir = {_name: _name},
57 package_data = {_name: ['vnfs/*.yaml', 'vnfs/examples/*.yaml',
58 'scenarios/*.yaml', 'scenarios/examples/*.yaml',
59 'instance-scenarios/examples/*.yaml', 'database_utils/*',
60 'scripts/*']},
61 data_files = [('/etc/osm/', ['osm_ro/openmanod.cfg']),
62 ('/etc/systemd/system/', ['osm_ro/osm-ro.service']),
63 ],
64 scripts=['openmanod', 'openmano', 'osm_ro/scripts/service-openmano', 'osm_ro/scripts/openmano-report',
65 'osm_ro/scripts/RO-start.sh'],
66 install_requires=_requirements,
67 include_package_data=True,
68 setup_requires=['setuptools-version-command'],
69 #test_suite='nose.collector',
70 )
71