-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
69 lines (62 loc) · 1.65 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
[metadata]
name = django-jsonfield-backport
version = 1.0.5
description = Backport of the cross-DB JSONField model and form fields from Django 3.1.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/laymonage/django-jsonfield-backport
author = sage
author_email = [email protected]
license = BSD
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
keywords = django jsonfield json backport database models forms fields
platforms =
any
[options]
packages = find:
package_dir = =src
install_requires =
Django>=2.2
python_requires = >=3.5
[options.packages.find]
where = src
[coverage:paths]
source =
src
.tox/*/site-packages
[coverage:run]
branch = True
include = */django_jsonfield_backport/*
parallel = True
[coverage:report]
show_missing = True
[flake8]
exclude = .tox,venv
ignore = W503,W504
max_line_length = 99
[isort]
combine_as_imports = True
default_section = THIRDPARTY
force_grid_wrap = 0
include_trailing_comma = True
known_third_party = Django
known_first_party = django_jsonfield_backport
line_length = 99
multi_line_output = 3
skip = .tox,venv
use_parentheses = True