| mirabal | 9f65710 | 2017-04-10 20:05:40 +0200 | [diff] [blame^] | 1 | #!/usr/bin/env python |
| 2 | |
| 3 | from setuptools import setup |
| 4 | |
| 5 | __name = 'lib_osm_openvim' |
| 6 | __version = '1.0.0' |
| 7 | __description = 'OSM Openvim library' |
| 8 | __author = 'ETSI OSM' |
| 9 | __author_email = 'alfonso.tiernosepulveda@telefonica.com' |
| 10 | __maintainer = 'mirabal' |
| 11 | __maintainer_email = 'leonardo.mirabal@altran.com' |
| 12 | __license = 'Apache 2.0' |
| 13 | __url = 'https://osm.etsi.org/gitweb/?p=osm/openvim.git;a=summary' |
| 14 | |
| 15 | _req = [ |
| 16 | "asn1crypto", |
| 17 | "cffi", |
| 18 | "enum34", |
| 19 | "functools32", |
| 20 | "idna", |
| 21 | "ipaddress", |
| 22 | "packaging", |
| 23 | "pbr", |
| 24 | "pkgconfig", |
| 25 | "pyasn1", |
| 26 | "pycparser", |
| 27 | "pycrypto", |
| 28 | "pyparsing", |
| 29 | "six", |
| 30 | "jsonschema", |
| 31 | "argcomplete", |
| 32 | "requests", |
| 33 | "PyYAML", |
| 34 | "requestsexceptions", |
| 35 | "netaddr", |
| 36 | "bottle", |
| 37 | "MySQL-python", |
| 38 | "paramiko", |
| 39 | ] |
| 40 | |
| 41 | __scripts__ = ['openflow'] |
| 42 | |
| 43 | setup(name=__name, |
| 44 | version=__version, |
| 45 | description=__description, |
| 46 | long_description=__description, |
| 47 | author=__author, |
| 48 | author_email=__author_email, |
| 49 | license=__license, |
| 50 | maintainer=__maintainer, |
| 51 | maintainer_email=__maintainer_email, |
| 52 | url=__url, |
| 53 | packages=[__name], |
| 54 | package_dir={__name: __name}, |
| 55 | scripts=__scripts__, |
| 56 | package_data={'lib_osm_openvim': ['*']}, |
| 57 | include_package_data=True, |
| 58 | install_requires=_req |
| 59 | ) |
| 60 | |
| 61 | |