X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=setup.py;h=ab23ca80123be548ef0ef32631a64a39e65c8a6f;hp=d836d2f2dc2382f3b76add5d14e05d8cc6b18924;hb=82b591ceed704c798ead2d9104085a08e75b511b;hpb=edc419027117245c0edd198d21719a7ed4e12ac9;ds=sidebyside diff --git a/setup.py b/setup.py index d836d2f..ab23ca8 100644 --- a/setup.py +++ b/setup.py @@ -14,29 +14,29 @@ from setuptools import setup, find_packages +_name = "N2VC" +_version_command = ("git describe --match v* --tags --long --dirty", "pep440-git-full") +_author = "OSM Support" +_author_email = "osmsupport@etsi.org" +_description = "OSM library implementing common interface towards VCA module" +_maintainer = "OSM Support" +_maintainer_email = "osmsupport@etsi.org" +_license = "Apache 2.0" +_url = "https://osm.etsi.org/gitweb/?p=osm/N2VC.git;a=tree" + setup( - name='N2VC', - version_command=('git describe --match v* --tags --long --dirty', - 'pep440-git-full'), - packages=find_packages( - exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), - install_requires=[ - 'macaroonbakery>=1.1,<2.0', - 'pyRFC3339>=1.0,<2.0', - 'pyyaml>=3.0,<4.0', - 'theblues>=0.3.8,<1.0', - 'websockets>=4.0,<5.0', - 'paramiko', - 'pyasn1>=0.4.4', - ], + name=_name, + version_command=_version_command, + description=_description, + long_description=open("README.md", encoding="utf-8").read(), + author=_author, + author_email=_author_email, + maintainer=_maintainer, + maintainer_email=_maintainer_email, + url=_url, + license=_license, + packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), include_package_data=True, - maintainer='Adam Israel', - maintainer_email='adam.israel@canonical.com', - description=(''), - url='', - license='Apache 2', - entry_points={ - 'console_scripts': [ - ], - }, + entry_points={"console_scripts": []}, + setup_requires=["setuptools-version-command"], )