-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
53 lines (43 loc) · 1.11 KB
/
pyproject.toml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = [
"scikit-build-core",
"pybind11>=2.12",
]
build-backend = "scikit_build_core.build"
[project]
name = "napf"
authors = [
{name="Jaewook Lee", email="[email protected]"}
]
license = {file = "LICENSE"}
description = "nanoflann python bindings for kdtree with multithreaded queries"
urls = {Homepage = "https://github.com/tataratat/napf"}
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
]
dependencies = ["numpy"]
dynamic = ["version"]
requires-python = ">=3.7"
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "napf/_version.py"
[tool.cibuildwheel]
test-command = "python {project}/tests/test_init_and_query.py"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.cibuildwheel.macos]
skip = "pp*"
[tool.cibuildwheel.linux]
skip = "pp*"
[tool.cibuildwheel.windows]
skip = "pp*"
[tool.black]
line-length = 79
exclude = "third_party"
[tool.blackdoc]
line-length = 75