-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
91 lines (84 loc) · 2.01 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
[metadata]
name = paper-streamfield
version = attr: streamfield.__version__
description = Implementation of the Wagtail's StreamField block picker for paper-admin.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/dldevinc/paper-streamfield
license = BSD license
author = Mihail Mishakin
author_email = x896321475@gmail.com
maintainer = Mihail Mishakin
maintainer_email = x896321475@gmail.com
platforms = OS Independent
classifiers =
Intended Audience :: Developers
Development Status :: 3 - Alpha
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries :: Python Modules
[bdist_wheel]
universal = 1
[options]
zip_safe = false
python_requires = >= 3.9
include_package_data = true
install_requires =
Django
paper-admin>=6.0rc
jinja2-simple-tags
packages = find_namespace:
[options.packages.find]
exclude =
tests
tests.*
[isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 90
known_first_party = app
[flake8]
max-line-length = 90
max-complexity = 10
exclude =
migrations/
tests/
per-file-ignores =
# imported but unused
__init__.py: F401
apps.py: F401
ignore =
# Line too long
E501
# Continuation line under-indented for visual indent
E128
# Line break after binary operator
W503
W504
# Function is too complex
C901
[mypy]
files = streamfield
strict_optional = False
check_untyped_defs = True
allow_redefinition = True
pretty = True
[coverage:run]
source = streamfield
omit =
*migrations*
*tests*