-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.18 KB
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
[project]
name = "django-throttle-requests"
version = "0.8.0"
requires-python = ">= 3.10"
description = "A Django framework for application-layer rate limiting"
readme = "README.rst"
authors = [
{ name = "Lewis Sobotkiewicz", email = "lewis.sobot@gmail.com" }
]
license = "MIT"
license-files = ["LICENSE"]
dependencies = [
"django>=5.2",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Repository = "https://github.com/sobotklp/django-throttle-requests"
[tool.ruff]
exclude = [
"docs"
]
[tool.ruff.lint]
# Avoid enforcing line-length violations (`E501`)
ignore = ["E501"]