-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
92 lines (82 loc) · 1.98 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
# setuptools config
# see http://setuptools.readthedocs.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files
[metadata]
name = gemma-zds-client
version = 1.0.0
description = Generieke client voor GEMMA-zaken componenten
long_description = file: README.rst
url = https://github.com/VNG-Realisatie/gemma-zds-client
license = EUPL 1.2
author = Maykin Media, VNG-Realisatie
author_email = [email protected]
keywords = openapi, swagger, django, vng, client, requests
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Operating System :: Unix
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
pyjwt
pyyaml
requests
tests_require =
pytest
tox
isort
requests-mock
[options.packages.find]
include =
zds_client
zds_client.*
[options.entry_points]
console_scripts =
generate-jwt = zds_client.generate_jwt:main
[options.extras_require]
tests =
pytest
tox
isort
black
requests-mock
pep8 = flake8
coverage = pytest-cov
docs =
sphinx
sphinx-rtd-theme
release =
bump2version
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
known_first_party = zds_client
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
ensure_newline_before_comments = true
[tool:pytest]
testpaths = tests
[flake8]
max-line-length=119
ignore = E121,E123,E126,E226,E24,E704,W503,W504,E231,F405,E203
exclude=env,.tox,doc
[coverage:run]
branch = True
source = zds_client
omit =
zds_client/tests/mocks.py