-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 772 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 772 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
[build-system]
requires = [
"setuptools>=38.6.0", # for long_description_content_type
"setuptools>=77.0.1 ; python_version>='3'",
]
build-backend = "setuptools.build_meta"
[project]
# keep in sync with setup_kwargs for Python 2
name = "sgp4"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,!=3.7.*,!=3.8.*,!=3.9.*"
dynamic = ["version", "description", "authors", "dependencies", "classifiers"]
[dependency-groups]
dev = [
"numpy>=1.21.2",
]
[tool.cibuildwheel]
build-verbosity = 0
skip = [
"*-musllinux_*", # not sure there's a good reason for this anymore ?
"cp314t-*",
]
test-groups = ["dev"]
test-command = [
"python -m unittest sgp4.tests",
]