We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65c9bb7 commit 5e6d53aCopy full SHA for 5e6d53a
MANIFEST.in
@@ -1,4 +1,5 @@
1
include setup.py
2
+include pyproject.toml
3
include README.rst
4
include LICENSE
5
include *.txt
pyproject.toml
@@ -0,0 +1,9 @@
+[build-system]
+requires = [
+ "wheel",
+ "setuptools",
+ "Cython>=0.25",
6
+ "numpy==1.9.3; python_version<='3.5'",
7
+ "numpy==1.12.1; python_version=='3.6'",
8
+ "numpy==1.13.1; python_version>='3.7'",
9
+]
0 commit comments