-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
122 lines (111 loc) · 2.48 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
[metadata]
name = drc-cmis
version = 1.9.1
description = An adapter to manage Documenten API resources in a CMIS backend.
long_description = file: README.rst
url = https://github.com/open-zaak/cmis-adapter
license = EUPL-1.2
author = Maykin Media, Joeri Bekker, Jorik Kraaikamp, Sergei Maertens, Silvia Amabilino
author_email = [email protected]
keywords = CMIS, Documenten API, VNG, Common Ground
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.2
Intended Audience :: Developers
Operating System :: Unix
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
django>=3.2.0
cmislib-maykin >= 0.7.2.dev0
django-solo
iso8601
commonground-api-common
python-decouple
furl
tests_require =
pytest
pytest-django
tox
freezegun
isort
black
factory-boy >= 3.0.0
psycopg2
responses
[options.packages.find]
exclude =
tests*
test_app*
[options.extras_require]
tests =
pytest
pytest-django
tox
isort
black
factory-boy >= 3.0.0
psycopg2
responses
freezegun
requests_mock
pep8 = flake8
coverage = pytest-cov
docs =
sphinx
sphinx-rtd-theme
release =
bumpversion
twine
# 3rd party configuration
[aliases]
test = pytest
[isort]
combine_as_imports = true
default_section = THIRDPARTY
include_trailing_comma = true
line_length = 88
multi_line_output = 3
skip = env,.tox,.history,.eggs
not_skip = __init__.py
known_django=django
known_first_party=drc_cmis
sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
[tool:pytest]
DJANGO_SETTINGS_MODULE=test_app.settings
testpaths = tests
; collect_ignore = ['setup.py']
; django_find_project=false
; python_files = test_*.py
; python_paths = .
[pep8]
[flake8]
max-line-length = 119
exclude = env,.tox,doc
[coverage:run]
source =
drc_cmis
branch = True
omit =
drc_cmis/migrations/*
[coverage:report]
exclude_lines =
no cov
no qa
noqa
pragma: no cover
if __name__ == .__main__.:
[coverage:xml]
output=coverage.xml