File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ ignore =
1919 ci
2020 ci/*
2121 codecov.yaml
22- dev -requirements.txt
22+ * -requirements.txt
2323 doc8.ini
2424 docs
2525 docs/*
@@ -123,7 +123,6 @@ BLANK_LINE_BEFORE_NESTED_CLASS_OR_DEF = true
123123
124124[metadata]
125125name = VWS Python
126- version = attr: vws.__version__
127126description = Interact with the Vuforia Web Services (VWS) API.
128127long_description = file: README.rst
129128keywords = vuforia client
Original file line number Diff line number Diff line change 11"""Setup script for VWS Python, a wrapper for Vuforia's Web Services APIs."""
22
33from pathlib import Path
4- from setuptools import setup
54from typing import List
65
6+ from setuptools import setup
7+
78import versioneer
89
910
@@ -30,6 +31,7 @@ def _get_dependencies(requirements_file: Path) -> List[str]:
3031)
3132
3233setup (
34+ version = versioneer .get_version (), # type: ignore
3335 cmdclass = versioneer .get_cmdclass (), # type: ignore
3436 install_requires = INSTALL_REQUIRES ,
3537 extras_require = {'dev' : DEV_REQUIRES },
You can’t perform that action at this time.
0 commit comments