Skip to content

Commit 1eb19c2

Browse files
authored
build: moves the setuptools requirement into the build requirements of the setup script. (#212)
1 parent e22f5d7 commit 1eb19c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22
import sys
33
from pathlib import Path
44

5-
from setuptools import Extension, find_packages, setup
6-
75
BUILD_REQUIREMENTS: tuple[str, ...] = (
86
"argparse-manpage==3",
97
"Babel==2.15.0",
108
"Cython~=3.0.8",
9+
"setuptools~=75.8.0",
1110
)
1211
INSTALL_REQUIREMENTS: tuple[str, ...] = (
1312
"argcomplete~=2.0.0",
@@ -40,6 +39,7 @@
4039
sys.exit(1)
4140
try:
4241
from Cython.Build import cythonize
42+
from setuptools import Extension, find_packages, setup
4343
except ModuleNotFoundError:
4444
print(
4545
"For the correct build install required build dependencies: "

0 commit comments

Comments
 (0)