Skip to content

Commit 5e6d53a

Browse files
committed
BLD: add pyproject.toml file (PEP 518 support).
1 parent 65c9bb7 commit 5e6d53a

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
include setup.py
2+
include pyproject.toml
23
include README.rst
34
include LICENSE
45
include *.txt

pyproject.toml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[build-system]
2+
requires = [
3+
"wheel",
4+
"setuptools",
5+
"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

Comments
 (0)