-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (87 loc) · 2.07 KB
/
Copy pathpyproject.toml
File metadata and controls
97 lines (87 loc) · 2.07 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[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",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"numpy >= 1.24"
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"geopandas",
"meshio >= 5.3",
"pandas >= 2",
"pytest >= 8",
]
[project.urls]
homepage = "https://pdal.org"
documentation = "https://pdal.org"
repository = "https://github.com/PDAL/Python"
changelog = "https://github.com/PDAL/python/blob/main/README.rst"
[build-system]
requires = [
"scikit-build-core >= 1.0",
"numpy >= 2.0",
"pybind11[global] >= 2.12",
]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
minimum-version = "build-system.requires"
build-dir = "build/{wheel_tag}"
sdist.exclude = [
".github",
"**/__pycache__/**",
"**/*.pyc",
]
sdist.cmake = false
sdist.inclusion-mode = "explicit"
cmake.build-type = "Release"
sdist.include = [
"CHANGES.txt",
"CMakeLists.txt",
"LICENSE.txt",
"pyproject.toml",
"README.rst",
"src",
]
wheel.packages = ["src/pdal"]
wheel.exclude = [
"pdal/*.cpp",
"pdal/*.hpp",
"pdal/export.hpp",
"**/__pycache__/**",
"**/*.pyc",
]
build.verbose = false
logging.level = "ERROR"
[tool.uv]
no-build-isolation = true
[tool.uv.pip]
no-build-isolation = true
[[tool.dynamic-metadata]]
provider = "scikit_build_core.metadata.regex"
field = "version"
input = "src/pdal/__init__.py"