-
Notifications
You must be signed in to change notification settings - Fork 130
/
setup.cfg
75 lines (64 loc) · 1.92 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
[coverage:run]
branch = True
source = .
omit = .venv/*,.tox/*
[coverage:report]
include = rest_framework_filters/*
show_missing = True
[isort]
skip = migrations
atomic = true
line_length = 90
include_trailing_comma = true
multi_line_output = 5
known_third_party = django,pytz,rest_framework,django_filters
known_first_party = rest_framework_filters
[flake8]
max_line_length = 90
max_complexity = 10
exclude = migrations
extend_ignore =
A003 ; class attribute shadowing builtin
D100,D101,D102,D103,D104,D105,D106,D107 ; docstring presence
[metadata]
name = djangorestframework-filters
version = 1.0.0.dev2
description = Better filtering for Django REST Framework
long_description = file: README.rst, LICENSE
license_file = LICENSE
license = MIT
author = Philip Neustrom
maintainer = Ryan P Kilby
maintainer_email = [email protected]
url = https://github.com/philipn/django-rest-framework-filters
project_urls =
Source=https://github.com/philipn/django-rest-framework-filters
Tracker=https://github.com/philipn/django-rest-framework-filters/issues
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 1.11
Framework :: Django :: 2.0
Framework :: Django :: 2.1
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Internet :: WWW/HTTP
[options]
python_requires = >=3.5
install_requires =
djangorestframework
django-filter>=2.0
zip_safe = False
include_package_data = True