-
Notifications
You must be signed in to change notification settings - Fork 54
/
pyproject.toml
78 lines (68 loc) · 1.99 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
[tool.poetry]
name = "turludock"
version = "3.0.4"
description = "Builds ROS docker images that support GUI with either X11 or Wayland."
authors = [
"Athanasios <[email protected]>",
"Joris <[email protected]>",
]
license = "BSD 3-Clause License"
readme = "README.md"
repository = "https://github.com/turlucode/ros-docker-gui"
keywords = ["ros", "docker"]
classifiers = [
"Development Status :: 5 - Production/Stable", # 3 - Alpha, 4 - Beta, 5 - Production/Stable
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development :: Build Tools",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
include = [
{ path = "turludock/assets/config_files/*.yaml"},
{ path = "turludock/assets/default_image_configurations/*.yaml"},
{ path = "turludock/assets/dockerfile_assets/*"},
{ path = "turludock/assets/dockerfile_templates/*.txt"},
{ path = "turludock/assets/dockerfile_templates/nvidia/*.txt"},
]
[tool.poetry.scripts]
turludock = 'turludock.__main__:main'
[tool.poetry.dependencies]
python = "^3.9"
loguru = "^0.7.2"
docker = "7.0.0"
requests = "2.26.0"
pyyaml = "6.0.1"
termcolor = "2.4.0"
rich = "13.7.1"
toml = "^0.10.2"
pyproject-flake8 = "^7.0.0"
black = "^24.4.2"
isort = "^5.13.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ["py35"]
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 120
skip = [".gitignore"]
[tool.flake8]
max-line-length = 120
[tool.mypy]
show_error_codes = true
strict = true
[tool.ruff]
line-length = 120
# Enforce pyflakes(F), pycodestyle(E, W), isort (I), bugbears (B), and pep8-naming (N) rules.
select = ["F", "E", "W", "I", "B", "N", "RET"]
[tool.ruff.pycodestyle]
max-doc-length = 120