-
Notifications
You must be signed in to change notification settings - Fork 226
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.05 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
[build-system]
requires = ["setuptools>=48", "setuptools_scm[toml]>=6.3.1"]
build-backend = "setuptools.build_meta"
[project]
name = "pyntcloud"
dynamic = ["version"]
description = "Python library for working with 3D point clouds."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "The MIT License" }
authors = [
{ name = "David de la Iglesia Castro", email = "[email protected]" }
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy>=1.6.0",
"pandas",
]
[project.optional-dependencies]
las = ["laspy", "lazrs"]
plot = ["ipython", "matplotlib", "pyvista>=0.32.0"]
numba = ["numba"]
all = [
"laspy",
"lazrs",
"ipython",
"matplotlib",
"pyvista>=0.32.0",
"numba",
"open3d"
]
[project.urls]
repository = "https://github.com/daavoo/pyntcloud"
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]
where = ["src"]
namespaces = false
[tool.setuptools_scm]