-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
57 lines (49 loc) · 851 Bytes
/
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
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "wrfy"
version = "0.9.2"
authors = ["Grahame Bowland <grahame@oreamnos.com.au>"]
description = "Simple bulk operations for Docker"
readme = "README.md"
[tool.poetry.scripts]
wrfy = 'wrfy.cli:main'
[tool.poetry.dependencies]
python = ">=3.7,<4"
docker = "^2.7.0"
progressbar2 = "^3.55.0"
[tool.poetry.dev-dependencies]
black = "*"
tox = "*"
flake8 = "*"
pytest = "*"
[tool.poetry.group.dev.dependencies]
poetryup = "^0.12.7"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py39
isolated_build = True
[testenv]
deps=pytest
commands=pytest
"""
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| tests/.*/setup.py
)/
'''