forked from zsoldosp/django-currentuser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (32 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
35 lines (32 loc) · 1.11 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "django-currentuser"
version = "0.6.1"
authors = [
{ name="Peter Zsoldos", email="hello@zsoldosp.eu" },
]
description = "Conveniently store reference to request user on thread/db level."
readme = "README.rst"
requires-python = ">=3.8"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
"Operating System :: OS Independent",
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
]
[project.urls]
"Homepage" = "https://github.com/zsoldosp/django-currentuser"
"Bug Tracker" = "https://github.com/zsoldosp/django-currentuser/issues"