-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (41 loc) · 1 KB
/
pyproject.toml
File metadata and controls
51 lines (41 loc) · 1 KB
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
[tool.poetry]
name = "flow-deploy"
version = "0.2.6"
description = "Rolling deploys for Docker Compose + Traefik stacks"
authors = ["Flowcanon"]
readme = "README.md"
packages = [{include = "flow_deploy", from = "src"}]
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1"
pyyaml = "^6.0"
[tool.poetry.group.lint.dependencies]
black = "^24.0"
isort = "^5.13"
flake8 = "^7.0"
flake8-bugbear = "^24.0"
pep8-naming = "^0.14"
autoflake = "^2.3"
[tool.poetry.group.test.dependencies]
pytest = "^8.0"
pytest-cov = "^6.0"
pytest-randomly = "^3.16"
[tool.poetry.scripts]
flow-deploy = "flow_deploy.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.isort]
profile = "black"
line_length = 100
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short --cov=flow_deploy --cov-report=term-missing"
[tool.coverage.run]
source = ["flow_deploy"]
[tool.coverage.report]
fail_under = 90
show_missing = true