-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 999 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (36 loc) · 999 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
36
37
38
39
40
[build-system]
requires = ["scikit-build-core>=0.4.0", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "vasapy"
version = "0.0.4"
description = "Vectorized ASsociative Arrays for PYthon"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache-2.0"}
authors = [{name = "Marco Salathe"}]
dependencies = ["numpy>=1.20"]
[project.urls]
Homepage = "https://github.com/cosama/vasapy"
[tool.scikit-build]
# Default configuration picks up CMakeLists.txt at the repository root.
sdist.exclude = [
".github/**",
"examples/**",
"3rd-party/parallel-hashmap/**",
]
sdist.include = [
"3rd-party/parallel-hashmap/LICENSE",
"3rd-party/parallel-hashmap/README.md",
"3rd-party/parallel-hashmap/parallel_hashmap/**",
]
[tool.cibuildwheel]
build = "cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*"
skip = [
"*-win32",
"*-manylinux_i686",
"*-musllinux_*",
"cp3??t-*",
]
test-requires = ["pytest"]
test-command = "pytest {project}/tests"