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 e22f5d7 commit 1eb19c2Copy full SHA for 1eb19c2
setup.py
@@ -2,12 +2,11 @@
2
import sys
3
from pathlib import Path
4
5
-from setuptools import Extension, find_packages, setup
6
-
7
BUILD_REQUIREMENTS: tuple[str, ...] = (
8
"argparse-manpage==3",
9
"Babel==2.15.0",
10
"Cython~=3.0.8",
+ "setuptools~=75.8.0",
11
)
12
INSTALL_REQUIREMENTS: tuple[str, ...] = (
13
"argcomplete~=2.0.0",
@@ -40,6 +39,7 @@
40
39
sys.exit(1)
41
try:
42
from Cython.Build import cythonize
+ from setuptools import Extension, find_packages, setup
43
except ModuleNotFoundError:
44
print(
45
"For the correct build install required build dependencies: "
0 commit comments