-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
80 lines (64 loc) · 1.73 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
[project]
name = "kappe"
authors = [{ name = "Marko Bausch" }]
description = "Kappe is an efficient data migration tool designed to seamlessly convert and split MCAP files."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
dependencies = [
"mcap>=0.3.0",
"mcap-ros1-support>=0.6.0",
"mcap-ros2-support>=0.3.0",
"numpy",
"pydantic>=2.4.2",
"tqdm",
"pyyaml>=6.0.1",
"scipy>=1.11.1",
"jsonargparse[signatures]>=4.25.0,<4.29.0",
"pointcloud2>=0.2.1",
"pydantic-yaml>=1.2.1",
]
dynamic = ["version"]
[project.urls]
repository = "https://github.com/sensmore/kappe"
[project.scripts]
kappe = "kappe.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/kappe/__init__.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.ruff]
line-length = 100
src = ['src']
target-version = 'py310'
[tool.ruff.lint]
exclude = ['msgs']
select = ['ALL']
ignore = [
'ANN101', # missing-type-self
'ANN401', # dynamically-typed-expression
'C901', # complex-structure
'D', # pydocstyle
'EM101', # raw-string-in-exception
'EM102', # f-string-in-exception
'FIX002', # TODO
'PLR2004', # MagicValueComparisons
'S101', # AssertUsed
'TD', # TODO
'TRY003', # raise-vanilla-args
# formater
'COM812', # missing-trailing-comma
'ISC001', # single-line-implicit-string-concatenation
]
[tool.ruff.lint.flake8-quotes]
inline-quotes = 'single'
[tool.ruff.format]
quote-style = "single"