-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (41 loc) · 1.12 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
[metadata]
name = k8senv
version = 0.0.1
description = Tools for managing multiple kubernetes clusters
long_description = file: README.md
url = https://github.com/wildfish/k8senv
author = Wildfish
author_email = [email protected]
license = BSD-3-Clause
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[tool:pytest]
testpaths =
tests
k8senv
addopts = --black --isort --mypy --cov=k8senv --cov-report=term-missing --cov-report=html
DJANGO_SETTINGS_MODULE = tests.settings
django_find_project = false
pythonpath = . src
[flake8]
max-line-length = 88
ignore = E123,E128,E203,E501,W503
[isort]
multi_line_output = 3
line_length = 88
known_django = django
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
include_trailing_comma = True
lines_after_imports = 2
skip = .git,migrations
[coverage:run]
omit =
k8senv/__main__.py
[mypy]
ignore_missing_imports = True