-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
89 lines (79 loc) · 1.81 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[metadata]
name = djocker
version = 0.2.1
description = Docker tools with a Django twist
long_description = file: README.rst
keywords = anders
url = https://github.com/andersinno/djocker
maintainer = Frank Wickström
license = MIT
license_file = LICENSE
platforms = any
classifiers =
Development Status :: 3 - Alpha
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
include_package_data = True
packages = find:
zip_safe = False
install_requires =
requests
Jinja2
[options.packages.find]
exclude = tests, tests.*
[options.entry_points]
console_scripts =
dockerize = djocker.scripts.dockerize:main
manage_with_compose = djocker.scripts.manage_with_compose:main
[bdist_wheel]
universal = 1
[tool:pytest]
norecursedirs = .* build dist venv test_data
[flake8]
exclude = .tox,dist,venv
max-line-length = 120
max-complexity = 10
per-file-ignores =
djocker/bin/dockerize.py: T001
djocker/bin/manage_with_compose.py: T001
djocker/utils/ask.py: T001
djocker/dockerize/handlers/base.py: T001
[isort]
include_trailing_comma = True
known_first_party = djocker
known_third_party = pytest,six
line_length = 80
multi_line_output = 3
not_skip = __init__.py
skip = .tox,dist,venv
[pycodestyle]
line_length = 120
[coverage:run]
branch = True
source = tests,
omit =
*migrations*
tests/test_*
[prequ]
annotate = yes
requirements-dev =
requests
Jinja2
requirements-test =
tox
pytest
pytest-cov
pytest-django
requirements-stylecheck =
flake8
flake8-isort
flake8-print
flake8-per-file-ignores
pep8-naming