-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
123 lines (108 loc) · 2.93 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
[build-system]
requires = ["hatchling>=1.0"]
build-backend = "hatchling.build"
[project]
name = "pointcloudset"
version = "0.10.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 = [
{ name = "VIRTUAL VEHICLE Research GmbH", email = "[email protected]" },
]
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",
"plotly",
"fastparquet",
"dask>=2023.11.0",
"typer",
"rich",
"rosbags>=0.9.15",
"ipywidgets",
"laspy",
]
[project.optional-dependencies]
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:"]
[tool.hatch.version]
path = "pointcloudset/__init__.py"
[[tool.hatch.version.files]]
path = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.hatch.version.files]]
path = "CHANGELOG.rst"
search = "Unreleased"
replace = """
Unreleased
-------------
{new_version} - ({now:%Y-%m-%d})
"""