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 7a4135d commit 065994cCopy full SHA for 065994c
pyproject.toml
@@ -227,3 +227,5 @@ where = ["src"]
227
228
[tool.setuptools.package-data]
229
vws = ["py.typed"]
230
+
231
+[tool.setuptools_scm]
setup.py
@@ -1,7 +1,5 @@
1
"""Setup script for VWS Python, a wrapper for Vuforia's Web Services APIs."""
2
3
-from __future__ import annotations
4
-
5
from pathlib import Path
6
7
from setuptools import setup
@@ -30,9 +28,7 @@ def _get_dependencies(requirements_file: Path) -> list[str]:
30
28
)
31
29
32
setup(
33
- use_scm_version=True,
34
setup_requires=SETUP_REQUIRES,
35
install_requires=INSTALL_REQUIRES,
36
extras_require={"dev": DEV_REQUIRES},
37
- python_requires=">=3",
38
0 commit comments