-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
27 lines (25 loc) · 928 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
[project]
name = "django-redis-session-store"
version = "0.1.1"
description = "A Django session backend with Redis storage."
readme = "README.md"
authors = [
{name = "Ömer Alkın", email = "[email protected]"},
]
license = { file = "LICENSE" }
keywords = ["django", "session", "redis", "store"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[project.urls]
Home = "https://github.com/mrlkn/django-redis-session"
Documentation = "https://github.com/mrlkn/django-redis-session/blob/master/README.md"
Source = "https://github.com/mrlkn/django-redis-session/tree/master/django_redis_session_store"