-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 850 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 850 Bytes
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
[project]
name = "rosbagkit"
version = "0.1.0"
description = "Toolkit for processing ROS bagfiles"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
authors = [{name = "Dongmyeong Lee"}]
dependencies = [
"rosbags",
"opencv-python",
"numpy",
"pandas",
"pyyaml",
"scipy",
"tqdm",
]
[project.urls]
Homepage = "https://github.com/ut-amrl/rosbagkit"
Repository = "https://github.com/ut-amrl/rosbagkit"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
dev = ["ruff"]
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.format]
line-ending = "lf"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]