X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=setup.py;h=b27dcbe9c366b032b0028c922acf5f6b10adfcf0;hp=a4cceb105718554f7afc0e930c132c15291f6409;hb=caf6efba68120623038efc361cf46e1f60de452b;hpb=c3e6c2ec9a1fddfc8e9bd31509b366e633b6d99e diff --git a/setup.py b/setup.py index a4cceb1..b27dcbe 100644 --- a/setup.py +++ b/setup.py @@ -12,12 +12,12 @@ # See the License for the specific language governing permissions and # limitations under the License. -from pathlib import Path from setuptools import setup, find_packages setup( name='N2VC', - version=0.1, + version_command=('git describe --match v* --tags --long --dirty', + 'pep440-git-full'), packages=find_packages( exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), install_requires=[ @@ -26,10 +26,11 @@ setup( 'pyyaml>=3.0,<4.0', 'theblues>=0.3.8,<1.0', 'websockets>=4.0,<5.0', + 'paramiko', ], include_package_data=True, - maintainer='', - maintainer_email='', + maintainer='Adam Israel', + maintainer_email='adam.israel@canonical.com', description=(''), url='', license='Apache 2',