forked from scikit-sparse/scikit-sparse
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (34 loc) · 724 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (34 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tool.black]
line-length = 120
target_version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| _build
| buck-out
| build
| dist
| doc
| venv
)/
)
'''
[build-system]
requires = [
"setuptools>=40.8.0",
"wheel",
"Cython>=0.22",
'numpy==1.13.3; python_version=="3.6"',
'numpy==1.14.5; python_version=="3.7"',
'numpy==1.17.3; python_version=="3.8"',
'numpy==1.19.3; python_version=="3.9"',
'numpy==1.23.1; python_version=="3.10"',
'numpy==1.23.5; python_version=="3.11"',
]
build-backend = "setuptools.build_meta"