-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpyproject.toml
95 lines (88 loc) · 2.73 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "django-el-pagination"
dynamic = ["version"]
description = "Django pagination tools supporting Ajax, multiple and lazy pagination, Twitter-style and Digg-style pagination."
readme = "README.rst"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Francesco Banconi"},
{name = "Oleksandr Shtalinberg", email = "[email protected]"}
]
dependencies = [
"django>=3.2.0",
]
keywords = ["django", "pagination", "ajax", "endless",]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
]
[project.urls]
Homepage = "http://github.com/shtalinberg/django-el-pagination"
Documentation = "http://django-el-pagination.readthedocs.org/"
Repository = "https://github.com/shtalinberg/django-el-pagination.git"
"Bug Tracker" = "https://github.com/shtalinberg/django-el-pagination/issues"
[tool.setuptools]
packages = ["el_pagination", "el_pagination.templatetags"]
include-package-data = true
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "el_pagination.get_version"}
[tool.setuptools.package-data]
el_pagination = [
"templates/el_pagination/*.html",
"static/el-pagination/js/*.js",
"locale/*/LC_MESSAGES/*.mo",
"locale/*/LC_MESSAGES/*.po",
"templatetags/*.py",
]
[tool.black]
line_length = 88
skip-string-normalization = true
target-version = ['py38']
include = '\.pyi?$'
extend-exclude = '''
/(
# The following are specific for Django.
| tests
| migrations
| \.venv
)/
'''
[tool.isort]
profile = "black"
blocked_extensions = [
"rst","html","js","svg","txt","css","scss","png","snap","tsx"
]
combine_as_imports = true
default_section = "THIRDPARTY"
force_grid_wrap = 0
include_trailing_comma = true
use_parentheses = true
known_django = "django"
sections=["FUTURE","STDLIB","DJANGO","THIRDPARTY","FIRSTPARTY","LOCALFOLDER"]
skip = ["migrations",".git","__pycache__","LC_MESSAGES"]
src_paths = ["el_pagination","tests"]
line_length = 88
multi_line_output = 5
no_lines_before="LOCALFOLDER"