-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (94 loc) · 2.6 KB
/
pyproject.toml
File metadata and controls
105 lines (94 loc) · 2.6 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
98
99
100
101
102
103
104
105
[build-system]
requires = ["uv_build>=0.6,<0.7"]
build-backend = "uv_build"
[project]
name = "pointcloudset"
version = "0.11.0"
description = "Analyze large datasets of point clouds recorded over time in an efficient way"
readme = "README.rst"
requires-python = ">=3.10, <3.12"
authors = [
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"numpy<2",
"pandas",
"pyntcloud",
"open3d>=0.16.0,<0.19.0",
"plotly",
"dask>=2023.11.0",
"typer",
"rich",
"rosbags>=0.9.15,<0.10.0",
"ipywidgets",
"laspy",
"pyarrow>=19.0.1",
]
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"docstr-coverage",
"pytest-check",
"ruff",
"coverage-badge",
"bump2version",
"nbval",
"ipykernel",
"nbconvert",
"nbformat",
"matplotlib",
"hatch",
"hatchling",
]
doc = [
"sphinx",
"sphinxcontrib-napoleon",
"sphinx_rtd_theme==0.5.2",
"nbsphinx",
"sphinx-click",
"pandoc",
]
[project.urls]
"Bug Tracker" = "https://github.com/virtual-vehicle/pointcloudset/issues"
"Source" = "https://github.com/virtual-vehicle/pointcloudset"
"Documentation" = "https://virtual-vehicle.github.io/pointcloudset/"
[project.scripts]
pointcloudset = "pointcloudset.io.dataset.commandline:app"
[tool.pytest.ini_options]
addopts = "-p no:warnings --verbose --color=yes"
[tool.ruff]
# General Ruff settings
line-length = 120
target-version = "py311"
[tool.ruff.lint]
# Import-related settings moved under [tool.ruff.lint]
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
isort = { known-first-party = ["pointcloudset", "tests"] }
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"pointcloudset/io/dataset/commandline.py" = ["F401"]
[tool.coverage.run]
omit = ["*test*"]
relative_files = true
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "if TYPE_CHECKING:"]