Skip to content

Commit e9031df

Browse files
committed
Move setup requirements to pyproject.toml
1 parent 37c9e71 commit e9031df

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,13 @@ module = [
148148
ignore_missing_imports = true
149149

150150
[build-system]
151-
requires = ["setuptools", "pip", "wheel"]
151+
requires = [
152+
"pip",
153+
"setuptools",
154+
"setuptools-scm-git-archive==1.4",
155+
"setuptools_scm[toml]==7.1.0",
156+
"wheel",
157+
]
152158
build-backend = "setuptools.build_meta"
153159

154160
[tool.distutils.bdist_wheel]

requirements/setup-requirements.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22

33
from setuptools import setup
44

5-
setup(
6-
setup_requires=SETUP_REQUIRES,
7-
)
5+
setup()

0 commit comments

Comments
 (0)