We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfcf8e1 commit c178cfcCopy full SHA for c178cfc
setup.py
@@ -2,6 +2,8 @@
2
3
from setuptools import find_packages, setup
4
5
+import versioneer
6
+
7
# We use requirements.txt instead of just declaring the requirements here
8
# because this helps with Docker package caching.
9
with open('requirements.txt') as requirements:
@@ -17,7 +19,8 @@
17
19
18
20
setup(
21
name='VWS Python',
- version='0.1',
22
+ version=versioneer.get_version(), # type: ignore
23
+ cmdclass=versioneer.get_cmdclass(), # type: ignore
24
author='Adam Dangoor',
25
author_email='adamdangoor@gmail.com',
26
description='Interact with the Vuforia Web Services (VWS) API.',
0 commit comments