-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
71 lines (62 loc) · 1.66 KB
/
setup.cfg
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
[metadata]
name = docker0s
description = Use docker-compose to manage multiple apps on a single host
long_description = file: README.rst
keywords = docker containers deployment
author = Richard Terry
author_email = code@radiac.net
license = BSD
classifiers =
Development Status :: 3 - Alpha
Environment :: Web Environment
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Topic :: Internet
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
url = https://radiac.net/projects/docker0s/
project_urls =
Documentation = https://docker0s.readthedocs.io/
Source = https://github.com/radiac/docker0s
Tracker = https://github.com/radiac/docker0s/issues
[options]
python_requires = >=3.10
packages = find:
include_package_data = true
zip_safe = false
install_requires =
click
fabric
python-dotenv
pyyaml
[options.packages.find]
exclude = tests*
[options.entry_points]
console_scripts =
docker0s = docker0s.commands:invoke
d0s = docker0s.commands:invoke
[tool:pytest]
addopts = --black --mypy --cov=docker0s --cov-report=term --cov-report=html
pythonpath = .
[coverage:run]
parallel=True
[flake8]
ignore = E123,E128,E203,E501,W503
max-line-length = 88
exclude = .tox,.git
[isort]
multi_line_output = 3
line_length = 88
known_first_party = docker0s
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
include_trailing_comma = True
lines_after_imports = 2
skip = .tox,.git
[mypy]
ignore_missing_imports = True
[doc8]
max-line-length = 88
ignore-path = *.txt,.tox