-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.38 KB
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
[build-system]
requires = ["setuptools>=61", "setuptools_scm>=6.2", "numba>=0.52"]
build-backend = "setuptools.build_meta"
[project]
name = "numba-kdtree"
authors = [
{name = "Felix Igelbrink", email = "[email protected]"},
]
description = 'A kdtree implementation for numba.'
readme = "README.md"
requires-python = ">= 3.9"
keywords = []
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
dependencies = [
'numba>=0.52'
]
dynamic = ["version"]
[project.optional-dependencies]
test = ['pytest', 'scipy', 'requests', 'plyfile']
[project.urls]
Homepage = "https://github.com/mortacious/numba-kdtree"
Issues = "https://github.com/mortacious/numba-kdtree/issues"
[tool.setuptools]
license-files = ["../LICENSE"]
[tool.setuptools_scm]
write_to = "numba_kdtree/_version.py"
version_scheme = "release-branch-semver"
[tool.setuptools.packages.find]
include = [
'numba_kdtree'
]