X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FN2VC.git;a=blobdiff_plain;f=setup.py;h=21111507d2a15fc9accabd55570f3b8e98f113f6;hp=1450a159d54a68704cbe0651f05f146711cd7fbe;hb=cda5f41db80360640c9665018325f29b57fd8878;hpb=427f57893cb4bf8aebc0b6f56d0cb3f178d23cf1 diff --git a/setup.py b/setup.py index 1450a15..2111150 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=[ @@ -25,12 +25,13 @@ setup( 'pyRFC3339>=1.0,<2.0', 'pyyaml>=3.0,<4.0', 'theblues>=0.3.8,<1.0', - 'websockets>=4.0,<5.0', + 'websockets>=7.0,<8.0', 'paramiko', + 'pyasn1>=0.4.4', ], include_package_data=True, - maintainer='', - maintainer_email='', + maintainer='Adam Israel', + maintainer_email='adam.israel@canonical.com', description=(''), url='', license='Apache 2',