forked from tier4/driving_log_replayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.03 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
[tool.poetry]
name = "driving_log_replayer_cli"
version = "1.1.2"
description = "command line tool for driving_log_replayer"
authors = [
"Hayato Mizushima <hayato.mizushima@tier4.jp>",
"Keisuke Shima <keisuke.shima@tier4.jp>",
]
license = "Apache V2"
packages = [
{ include = "driving_log_replayer_cli"},
{ include = "driving_log_replayer_analyzer", from="driving_log_replayer_analyzer"},
]
include = [
"driving_log_replayer_cli",
"driving_log_replayer_analyzer",
]
[tool.poetry.scripts]
driving_log_replayer = "driving_log_replayer_cli:main"
driving_log_replayer_analyzer = "driving_log_replayer_analyzer.main:main"
[tool.poetry.dependencies]
python = "^3.8"
termcolor = "^1.1.0"
natsort = "^7.1.1"
PyYAML = "^5.4.1"
toml = "^0.10.2"
click = "^8.0.3"
pandas = "^1.5.2"
plotly = "^5.11.0"
kaleido = "0.2.1"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
flake8 = "^4.0.1"
pep8-naming = "^0.12.1"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line_length = 100