-
Notifications
You must be signed in to change notification settings - Fork 769
/
pyproject.toml
60 lines (53 loc) · 1.9 KB
/
pyproject.toml
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "django-filter"
authors = [{name = "Alex Gaynor", email = "alex.gaynor@gmail.com"}]
maintainers = [{name = "Carlton Gibson", email = "carlton.gibson@noumenal.es"}]
license = {text = "BSD"}
description = "Django-filter is a reusable Django application for allowing users to filter querysets dynamically."
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8"
dependencies = ["Django>=4.2"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/carltongibson/django-filter/tree/main"
Documentation = "https://django-filter.readthedocs.io/en/main/"
Changelog = "https://github.com/carltongibson/django-filter/blob/main/CHANGES.rst"
"Bug Tracker" = "https://github.com/carltongibson/django-filter/issues"
"Source Code" = "https://github.com/carltongibson/django-filter"
[tool.setuptools]
zip-safe = false
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
exclude = ["tests*"]
namespaces = false
[tool.isort]
profile = "black"
skip = [".tox"]
known_third_party = ["django", "pytz", "rest_framework"]
known_first_party = ["django_filters"]
[tool.flit.module]
name = "django_filters"
[tool.coverage.run]
relative_files = true