forked from stephenmcd/django-forms-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
72 lines (64 loc) · 1.63 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
[metadata]
version = 1.0.0
name = django-forms-builder-cod
description =
A Django reusable app providing the ability for admin users to create their own forms and report
on their collected data.
long_description = file: README.rst
long_description_content_type = text/x-rst
license = BSD
url = https://github.com/CZ-NIC/django-forms-builder
author = Stephen McDonald
author_email = [email protected]
maintainer = Zdeněk Böhm, CZ.NIC
maintainer_email = [email protected]
platforms = posix
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Framework :: Django
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Internet :: WWW/HTTP :: Site Management
[options]
python_requires = >=3.9
include_package_data = true
packages = find:
install_requires =
django >= 3.2, < 5.0.0
unidecode ~= 1.3
setup_requires =
babel >= 2.3
zip_safe = false
[compile_catalog]
domain = django
directory = forms_builder/forms/locale
[options.packages.find]
exclude =
example
[options.extras_require]
quality =
flake8
isort
mypy
polint
pydocstyle
[flake8]
max-line-length = 120
# max-complexity = 15
exclude = migrations
[pydocstyle]
add_ignore = D413,D1
match_dir = ^(?!migrations|\.).*
[isort]
line_length = 120
known_first_party = forms_builder
default_section = THIRDPARTY
skip = migrations
[mypy]
ignore_missing_imports = True