Skip to content

Commit c178cfc

Browse files
committed
Add versioneer
1 parent dfcf8e1 commit c178cfc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
from setuptools import find_packages, setup
44

5+
import versioneer
6+
57
# We use requirements.txt instead of just declaring the requirements here
68
# because this helps with Docker package caching.
79
with open('requirements.txt') as requirements:
@@ -17,7 +19,8 @@
1719

1820
setup(
1921
name='VWS Python',
20-
version='0.1',
22+
version=versioneer.get_version(), # type: ignore
23+
cmdclass=versioneer.get_cmdclass(), # type: ignore
2124
author='Adam Dangoor',
2225
author_email='adamdangoor@gmail.com',
2326
description='Interact with the Vuforia Web Services (VWS) API.',

0 commit comments

Comments
 (0)