-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
65 lines (50 loc) · 1.37 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
[tool.poetry]
name = "docker-image-size-limit"
version = "2.0.0"
description = ""
license = "MIT"
authors = [
"Nikita Sobolev <mail@sobolevn.me>"
]
readme = "README.md"
repository = "https://github.com/wemake-services/docker-image-size-limit"
keywords = [
"docker",
"docker image",
"size limit",
"wemake.services",
"code quality"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Typing :: Typed",
]
[tool.poetry.urls]
"Funding" = "https://github.com/sponsors/wemake-services"
[tool.poetry.scripts]
disl = "docker_image_size_limit:main"
[tool.poetry.dependencies]
python = "^3.9"
docker = ">=3.7"
humanfriendly = ">=4.18,<11.0"
[tool.poetry.group.dev.dependencies]
pytest-cov = "^6.0"
pytest-randomly = "^3.16"
pytest-timeout = "^2.3"
pytest = "^8.1"
mypy = "^1.13"
types-humanfriendly = "^10.0"
types-docker = "^7.1"
wemake-python-styleguide = "^0.19"
flake8-pytest-style = "^2.0"
nitpick = "^0.35"
[build-system]
requires = ["poetry-core>=1.9.0"]
build-backend = "poetry.core.masonry.api"
[tool.nitpick]
style = "https://raw.githubusercontent.com/wemake-services/wemake-python-styleguide/master/styles/nitpick-style-wemake.toml"