This repository was archived by the owner on Sep 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
106 lines (93 loc) · 2.14 KB
/
setup.cfg
File metadata and controls
106 lines (93 loc) · 2.14 KB
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
[metadata]
name = caverage_social_backend
description = Backend of Caverage Social
version = 0.0.1
url = https://github.com/caverage/Caverage_Social_Backend
keywords =
social
classifiers =
Development Status :: 1 - Planning
Framework :: Django
Intended Audience :: End Users/Desktop
License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Natural Language :: English
Programming Language :: Python :: 3.8
Operating System :: POSIX :: Linux
Topic :: Communications
Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards
Typing :: Typed
long_description = file: README.md
long_description_content_type = text/markdown
license_files =
LICENSE.txt
[options]
python_requires = ~=3.6
setup_requires =
setuptools >= 40.6
pip >= 10
packages = find:
zip_safe: false
scripts =
install_requires =
wheel
django
; django-stubs
djangorestframework
; djangorestframework-stubs
django-keycloak
django-dynamic-fixtures
[options.extras_require]
tests =
pytest
pytest-cov
black
pylint
mypy
isort
[options.entry_points]
console_scripts =
# foo
[coverage:run]
branch = True
[coverage:report]
show_missing = True
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
# Global options:
[mypy]
python_version = 3.8
warn_unused_configs = True
warn_redundant_casts = True
; plugins =
; mypy_django_plugin.main
; mypy_drf_plugin.main
;
; [mypy.plugins.django-stubs]
; django_settings_module = caverage_social_backend.settings
# Per-module options:
[mypy-caverage_social_backend.*]
disallow_any_unimported = False
disallow_any_decorated = True
disallow_any_generics = True
disallow_subclassing_any = False
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
warn_return_any = True
warn_unused_ignores = True
no_implicit_optional = True
strict_optional = True
[mypy-tests.*]
ignore_errors = True
; [mypy-setuptools.*]
; ignore_missing_imports = True
[mypy-django.*]
ignore_missing_imports = True
[mypy-rest_framework.*]
ignore_missing_imports = True