-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
21 lines (18 loc) · 975 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[build-system]
requires = [
"setuptools==59.6.0", "wheel==0.37.1", "pip",
"numpy==1.13.3; python_version=='3.6' and platform_machine != 'aarch64' and platform_machine != 'arm64'",
"numpy==1.14.5; python_version=='3.7' and platform_machine != 'aarch64' and platform_machine != 'arm64'",
"numpy==1.17.3; python_version=='3.8' and platform_machine != 'aarch64' and platform_machine != 'arm64'",
"numpy==1.19.3; python_version<='3.9' and sys_platform == 'linux' and platform_machine == 'aarch64'",
"numpy==1.21.0; python_version<='3.9' and sys_platform == 'darwin' and platform_machine == 'arm64'",
"numpy==1.19.3; python_version=='3.9' and platform_machine != 'aarch64' and platform_machine != 'arm64'",
"numpy==1.23.4; python_version>='3.10'",
"numpy==1.21.4; python_version>='3.10' and platform_system=='Darwin'"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["pygridstreamer"]
[project]
name = "pygridstreamer"
version = "0.1"