X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=setup.py;h=ec1dccb55df73d5e4746734e5370c4b773d331cf;hp=0c874f1a0bb1ef86d22f715d6f6ed79f8f7df43e;hb=7c6840b23b5d6d8bc14eb7e76d1262c4ccde3097;hpb=8bfcc14713a71f43f155e3cddec168380134d344 diff --git a/setup.py b/setup.py index 0c874f1..ec1dccb 100644 --- a/setup.py +++ b/setup.py @@ -14,28 +14,29 @@ from setuptools import setup, find_packages -_description = 'OSM library implementing common interface towards VCA module' +_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=[ - 'juju==2.8.2', - 'paramiko', - 'pyasn1>=0.4.4', - 'kubernetes==10.0.1' - ], - include_package_data=True, - maintainer='Adam Israel', - maintainer_email='adam.israel@canonical.com', + name=_name, + version_command=_version_command, description=_description, - url='', - license='Apache 2', - entry_points={ - 'console_scripts': [ - ], - }, + 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, + entry_points={"console_scripts": []}, + setup_requires=['setuptools-version-command'] )