We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61a729a commit aff9bc2Copy full SHA for aff9bc2
setup.py
@@ -1,8 +1,9 @@
1
"""Setup script for VWS Python, a wrapper for Vuforia's Web Services APIs."""
2
3
-import versioneer
4
from setuptools import find_packages, setup
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:
src/vws/__init__.py
@@ -2,12 +2,12 @@
A library for Vuforia Web Services.
"""
+from ._version import get_versions
from .vws import VWS
__all__ = [
'VWS',
10
]
11
-from ._version import get_versions
12
__version__ = get_versions()['version'] # type: ignore
13
del get_versions
0 commit comments