-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
60 lines (54 loc) · 2 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
[tool.poetry]
name = "poetry-dockerize-plugin"
version = "1.3.1"
description = "Poetry application to Docker, automatically."
authors = ["Nicolò Boschi <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["poetry", "packaging", "docker"]
repository = "https://github.com/nicoloboschi/poetry-dockerize-plugin"
documentation = "https://github.com/nicoloboschi/poetry-dockerize-plugin"
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",
"License :: OSI Approved :: MIT License"
]
packages = [
{include = "poetry_dockerize_plugin", from = "."}
]
[tool.poetry.plugins."poetry.application.plugin"]
dockerize = "poetry_dockerize_plugin.plugin:DockerApplicationPlugin"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
poetry = "^1.7.1"
poetry-core = "^1.8.1"
docker = "^7.1.0"
requests = "^2.32.2"
python-dotenv = "^1.0.1"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[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"