-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (31 loc) · 931 Bytes
/
pyproject.toml
File metadata and controls
33 lines (31 loc) · 931 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "adrf-caching"
version = "0.2.4"
authors = [
{ name="imgvoid", email="imgvoid@gmail.com" },
]
description = "Async caching with MD5 and OpenAPI schema generation for ADRF (Asynchronous Django Rest Framework) and Django 5.0+"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Framework :: Django",
"Intended Audience :: Developers",
]
dependencies = [
"Django>=5.0",
"djangorestframework>=3.14",
"asgiref>=3.5",
"adrf>=0.1.12",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-django>=4.12.0"
]
[project.urls]
"Homepage" = "https://github.com/imgVOID/adrf-caching"
"Bug Tracker" = "https://github.com/imgVOID/adrf-caching/issues"