-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (85 loc) · 2.41 KB
/
Copy pathpyproject.toml
File metadata and controls
89 lines (85 loc) · 2.41 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
[build-system]
requires = ["setuptools >=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pointtorch"
version = "1.1.0"
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 Deep Learning on 3D Point Clouds Using PyTorch."
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 = ["point cloud", "deep learning", "pytorch"]
requires-python = ">=3.11"
dependencies = [
"h5py>=3.5.0, <4.0.0",
"laspy>=2.0.0, <3.0.0",
"laszip>=0.2.0, <3.0.0",
"lazrs>=0.5.0, <1.0.0",
"numpy>=2.3, <3.0.0",
"pandas>=2.0.0, <3.0.0",
"plyfile>=1.0.0, <2.0.0",
"pypcd4 >=1.0.0, < 2.0.0",
"pyproj>=3.4.0, <4.0.0",
"scikit-learn>=1.2.0, <2.0.0",
"scipy>=1.8.0, <2.0.0",
"stream-unzip>=0.0.99, <1.0.0",
"tables>=3.8.0, <4.0.0",
"tqdm>=4.60.0, <5.0.0",
]
[project.optional-dependencies]
dev = [
"black",
"hypothesis",
"mypy",
"pandas-stubs",
"pre-commit",
"pylint",
"pytest",
"pytest-cov",
"pytest-httpserver",
"types-tqdm",
]
docs = [
"sphinx",
"sphinx-copybutton",
"sphinx-design",
"sphinx-docsearch",
"sphinxawesome-theme",
"sphinx-sitemap",
"sphinxcontrib-jsmath",
"sphinxcontrib-katex",
"sphinxcontrib-napoleon",
"sphinx_mdinclude",
]
[project.urls]
Homepage = "https://github.com/ai4trees/pointtorch"
Documentation = "https://ai4trees.github.io/pointtorch/"
Repository = "https://github.com/ai4trees/pointtorch.git"
Issues = "https://github.com/ai4trees/pointtorch/issues"
Changelog = "https://ai4trees.github.io/pointtorch/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]
pointtorch = ["*.typed"]