-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (48 loc) · 1.34 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
[tool.poetry]
name = "docker-ready-cli"
version = "0.2.0"
description = ""
authors = ["impocode <[email protected]>"]
maintainers = ["impocode <[email protected]>"]
license= "MIT"
readme = "readme.md"
keywords = ["docker"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
homepage = "https://github.com/docker-ready/cli"
repository = "https://github.com/docker-ready/cli"
documentation = "https://github.com/docker-ready/cli"
[tool.poetry.dependencies]
python = "^3.12"
click = "^8.1.7"
rich = "^13.7.1"
docker-ready = "^0.2.0"
python-dateutil = "^2.9.0.post0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.9"
pytest = "^8.2.1"
[tool.poetry.scripts]
docker-ready = "docker_ready_cli:cli"
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = [
"F", # pyflakes
"E", # pycodestyle errors
"W", # pycodestyle warnings
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"