-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (89 loc) · 2.66 KB
/
pyproject.toml
File metadata and controls
94 lines (89 loc) · 2.66 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
[build-system]
requires = ["scikit-build-core", "pybind11>=2.13.6,<3.0.0"]
build-backend = "scikit_build_core.build"
[project]
name = "pointtree"
version = "1.0.1"
authors = [
{name = "Josafat-Mattias Burmeister", email = "burmeister@uni-potsdam.de"},
]
maintainers = [
{name = "Josafat-Mattias Burmeister", email = "burmeister@uni-potsdam.de"}
]
description = "A Python Package for Tree Instance Segmentation in 3D Point Clouds."
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["tree", "point cloud", "segmentation"]
requires-python = ">=3.11"
dependencies = [
"circle_detection>=1.0.0, <2.0.0",
"cloth-simulation-filter>=1.1.5, <2.0.0",
"laspy>=2.0.0, <3.0.0",
"numba>=0.64.0, <1.0.0",
"numpy>=2.3.0, <3.0.0",
"pandas>=2.0.0, <3.0.0",
"pointtorch>=1.0.3, <2.0.0",
"psutil>=5.9.0, < 7.0.0",
"pyclesperanto-prototype>=0.22.0, <1.0.0",
"pygam>=0.9.0, <1.0.0",
"rasterio>=1.3.9, <2.0.0",
"scipy>=1.8.0, <2.0.0",
"scikit-image>=0.25.0, <1.0.0",
"scikit-learn>=1.2.0, <2.0.0"
]
[project.optional-dependencies]
dev = [
"black",
"mypy",
"pandas-stubs",
"pre-commit",
"pylint",
"pytest",
"pytest-cov",
"scipy-stubs",
"types-Pillow",
"types-psutil",
]
docs = [
"sphinx>=7.0.0, <9.0.0",
"sphinx-autodoc-typehints>=2.0.0, <4.0.0",
"sphinx-copybutton<1.0.0",
"sphinx-design<1.0.0",
"sphinx-docsearch<1.0.0",
"sphinx-mdinclude<1.0.0",
"sphinx-sitemap>=2.0.0, <3.0.0",
"sphinxawesome-theme>=5.0.0, <6.0.0",
"sphinxcontrib-jsmath<2.0.0",
"sphinxcontrib-katex<1.0.0",
"sphinxcontrib-napoleon<1.0.0",
]
[project.urls]
Homepage = "https://github.com/ai4trees/pointtree"
Documentation = "https://ai4trees.github.io/pointtree/"
Repository = "https://github.com/ai4trees/pointtree.git"
Issues = "https://github.com/ai4trees/pointtree/issues"
Changelog = "https://ai4trees.github.io/pointtree/changelog"
[tool.semantic_release]
version_toml = [
"pyproject.toml:project.version"
]
branch = "main"
changelog_file = "CHANGELOG.md"
build_command = "python -m build"
[tool.setuptools.package-data]
pointtree = ["*.typed"]
[tool.scikit-build]
build-dir = "build/{wheel_tag}"
build.verbose = true