-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.cfg
49 lines (46 loc) · 1.59 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
[metadata]
name = django-querysetsequence
version = 0.17
description = Chain together multiple (disparate) QuerySets to treat them as a single QuerySet.
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Patrick Cloke
author_email = [email protected]
url = https://github.com/clokep/django-querysetsequence
keywords = django, queryset, chain, multi, multiple, iterable
license = ISC
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Software Development :: Libraries :: Python Modules
Environment :: Web Environment
Topic :: Internet
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
License :: OSI Approved :: ISC License (ISCL)
project_urls =
Documentation = https://django-querysetsequence.readthedocs.io
Release notes = https://github.com/clokep/django-querysetsequence/blob/main/CHANGELOG.rst
Source = https://github.com/clokep/django-querysetsequence
Funding = https://github.com/sponsors/clokep
Tracker = https://github.com/clokep/django-querysetsequence/issues
[options]
packages =
queryset_sequence
install_requires = django>=3.2
python_requires = >=3.8
[flake8]
extend-ignore = E203
max-line-length = 88
[isort]
profile = black
default_section = THIRDPARTY