-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
74 lines (64 loc) · 2.17 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
[project]
name = "dockerpyze"
version = "2.2.0"
description = "Python applications to Docker, automatically."
authors = [
]
maintainers = [
]
requires-python = ">=3.11,<4.0"
license = "MIT"
readme = "README.md"
keywords = ["poetry", "packaging", "docker", "uv"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Software Distribution",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"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",
]
dependencies = [
"poetry-core>=1.8.1,<3",
"docker>=7.1.0",
"requests>=2.32.2",
"python-dotenv>=1.0.1",
]
[project.urls]
Homepage = "https://github.com/nicoloboschi/dockerpyze"
Repository = "https://github.com/nicoloboschi/dockerpyze"
Documentation = "https://github.com/nicoloboschi/dockerpyze"
[project.scripts]
dockerpyze = "dockerpyze.builder:entrypoint"
[tool.uv]
package = true
[tool.poetry.plugins."poetry.application.plugin"]
dockerpyze = "dockerpyze.poetry_plugin:DockerApplicationPlugin"
[tool.dpy]
entrypoint = ["uv", "run", "dockerpyze"]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s %(levelname)s %(message)s"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[dependency-groups]
dev = [
"pytest>=8.3.5",
]