-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
48 lines (40 loc) · 1.36 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "rosbag-tools"
authors = [{ name = "damienlarocque", email = "phicoltan@gmail.com" }]
license = { file = "LICENSE" }
requires-python = ">=3.8"
dependencies = ["click", "pandas", "pyyaml", "rosbags==0.9.16", "tqdm"]
readme = "README.md"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version", "description"]
[project.optional-dependencies]
plot = ["matplotlib"]
dev = ["black", "pylint", "bump2version"]
[project.urls]
Homepage = "https://github.com/IamPhytan/rosbag-tools"
"Repository on GitHub" = "https://github.com/IamPhytan/rosbag-tools"
"Repository on GitLab" = "https://gitlab.com/damienlarocque/rosbag-tools"
[project.scripts]
rosbag-tools = "rosbag_tools.__main__:cli_main"
[tool.isort]
profile = "black"
[tool.black]
line-length = 90
[tool.pylint]
[tool.pylint.messages_control]
disable = "C0330, C0326"
[tool.pylint.format]
max-line-length = "90"