Skip to content

Commit 02b3fc6

Browse files
authored
Merge pull request #321 from rgommers/pep518
BLD: add pyproject.toml file (PEP 518 support).
2 parents 69c1fa9 + 5e6d53a commit 02b3fc6

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
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

Lines changed: 9 additions & 0 deletions
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)