Skip to content

Commit 5ff696b

Browse files
Merge pull request #1808 from VWS-Python/mv-setuptools-scm
Move setuptools_scm config to pyproject.toml
2 parents 7a4135d + 065994c commit 5ff696b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,3 +227,5 @@ where = ["src"]
227227

228228
[tool.setuptools.package-data]
229229
vws = ["py.typed"]
230+
231+
[tool.setuptools_scm]

setup.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"""Setup script for VWS Python, a wrapper for Vuforia's Web Services APIs."""
22

3-
from __future__ import annotations
4-
53
from pathlib import Path
64

75
from setuptools import setup
@@ -30,9 +28,7 @@ def _get_dependencies(requirements_file: Path) -> list[str]:
3028
)
3129

3230
setup(
33-
use_scm_version=True,
3431
setup_requires=SETUP_REQUIRES,
3532
install_requires=INSTALL_REQUIRES,
3633
extras_require={"dev": DEV_REQUIRES},
37-
python_requires=">=3",
3834
)

0 commit comments

Comments
 (0)