-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
42 lines (37 loc) · 1.43 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
[build-system]
requires = ["setuptools<81", "setuptools-scm[toml]>=9.2.2"]
build-backend = "setuptools.build_meta"
[project]
name = "django-currentuser"
dynamic = ["version", "readme", "dependencies"]
authors = [{ name = "Peter Zsoldos", email = "hello@zsoldosp.eu" }]
maintainers = [{ name = "Peter Zsoldos", email = "hello@zsoldosp.eu" }]
description = "Conveniently store reference to request user on thread/db level."
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: English",
"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",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
]
[project.urls]
"Homepage" = "https://github.com/zsoldosp/django-currentuser"
"Bug Tracker" = "https://github.com/zsoldosp/django-currentuser/issues"
[tool.setuptools]
packages = ["django_currentuser", "django_currentuser.db", "django_currentuser.db.models"]
[tool.setuptools.dynamic]
version = { attr = "django_currentuser.__version__" }
readme = { file = ["README.rst"] }
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"