-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
61 lines (56 loc) · 1.5 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
[bdist_wheel]
universal = 1
[metadata]
name = django-querystring-tag
version = attr: querystring_tag.get_version
author = Andy Babic
author_email = andyjbabic@gmail.com
long_description = file: README.md
long_description_content_type = text/markdown
license = BSD-3-Clause
license_file = LICENSE
keywords= django querystring GET parameters pagination filter state-preserving link template tag util
classifiers=
Environment :: Web Environment
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Operating System :: OS Independent
License :: OSI Approved :: BSD License
Natural Language :: English
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Framework :: Django
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Framework :: Django :: 4.0
[options]
packages = find:
include_package_data = true
install_requires =
Django >=3.1
python_requires = >=3.7
[options.extras_require]
lint =
black ==22.3.0
isort ==5.9.3
flake8 ==3.9.2
test =
pytest-cov ==2.12.1
pytest-mock ==3.6.1
pytest-django ==4.4.0
pytest ==6.2.4
[flake8]
ignore = C901,W503
max-line-length = 120
[isort]
known_first_party=querystring_tag
profile=black
skip=migrations,node_modules,venv
sections=STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
default_section=THIRDPARTY
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True