-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
69 lines (60 loc) · 1.62 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "pdal"
description = "Point cloud data processing"
readme = "README.rst"
requires-python = ">=3.9"
license = {file = "LICENSE.txt"}
keywords = ["point", "cloud", "spatial"]
authors = [
{email = "howard@hobu.co"},
{name = "Howard Butler"}
]
maintainers = [
{name = "Howard Butler", email = "howard@hobu.co"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"numpy >= 1.22"
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pandas",
"meshio"
]
[tool.setuptools]
package-dir = {"" = "src"}
zip-safe = false
[project.urls]
homepage = "https://pdal.io"
documentation = "https://pdal.io"
repository = "https://github.com/PDAL/Python"
changelog = "https://github.com/PDAL/python/blob/main/README.rst"
[build-system]
requires = ["scikit-build-core >= 0.9", "numpy >= 1.22", "pybind11[global]"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
build-dir = "build/{wheel_tag}"
sdist.exclude = [".github"]
sdist.cmake = true
cmake.build-type = "Release"
sdist.include = [
"src",
"CMakeLists.txt"
]
cmake.verbose = false
logging.level = "ERROR"
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "src/pdal/__init__.py"