| 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' |
| mirabal | 9f65710 | 2017-04-10 20:05:40 +0200 | [diff] [blame] | 6 | __description = 'OSM Openvim library' |
| 7 | __author = 'ETSI OSM' |
| 8 | __author_email = 'alfonso.tiernosepulveda@telefonica.com' |
| 9 | __maintainer = 'mirabal' |
| 10 | __maintainer_email = 'leonardo.mirabal@altran.com' |
| 11 | __license = 'Apache 2.0' |
| 12 | __url = 'https://osm.etsi.org/gitweb/?p=osm/openvim.git;a=summary' |
| 13 | |
| 14 | _req = [ |
| garciadeblas | 5519577 | 2017-09-13 08:28:39 +0200 | [diff] [blame] | 15 | #"asn1crypto", |
| mirabal | 9f65710 | 2017-04-10 20:05:40 +0200 | [diff] [blame] | 16 | "cffi", |
| 17 | "enum34", |
| 18 | "functools32", |
| 19 | "idna", |
| 20 | "ipaddress", |
| 21 | "packaging", |
| 22 | "pbr", |
| 23 | "pkgconfig", |
| 24 | "pyasn1", |
| 25 | "pycparser", |
| 26 | "pycrypto", |
| 27 | "pyparsing", |
| 28 | "six", |
| 29 | "jsonschema", |
| 30 | "argcomplete", |
| 31 | "requests", |
| 32 | "PyYAML", |
| 33 | "requestsexceptions", |
| 34 | "netaddr", |
| 35 | "bottle", |
| garciadeblas | 5519577 | 2017-09-13 08:28:39 +0200 | [diff] [blame] | 36 | #"MySQL-python", |
| 37 | #"mysqlclient", |
| mirabal | 005a9dc | 2017-08-23 16:41:27 +0200 | [diff] [blame] | 38 | "paramiko" |
| mirabal | 9f65710 | 2017-04-10 20:05:40 +0200 | [diff] [blame] | 39 | ] |
| 40 | |
| garciadeblas | 8b7767b | 2017-04-20 19:21:49 +0200 | [diff] [blame] | 41 | __scripts__ = ['openflow-lib'] |
| mirabal | 9f65710 | 2017-04-10 20:05:40 +0200 | [diff] [blame] | 42 | |
| 43 | setup(name=__name, |
| garciadeblas | 0892d54 | 2018-10-05 15:04:10 +0200 | [diff] [blame] | 44 | version_command=('git describe --tags --long --dirty --match v*', 'pep440-git-full'), |
| mirabal | 9f65710 | 2017-04-10 20:05:40 +0200 | [diff] [blame] | 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, |
| garciadeblas | 5519577 | 2017-09-13 08:28:39 +0200 | [diff] [blame] | 58 | install_requires=_req, |
| 59 | setup_requires=['setuptools-version-command'], |
| mirabal | 9f65710 | 2017-04-10 20:05:40 +0200 | [diff] [blame] | 60 | ) |
| 61 | |
| 62 | |