-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (30 loc) · 895 Bytes
/
pyproject.toml
File metadata and controls
32 lines (30 loc) · 895 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
[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "django-ez-tasks"
version = "0.0.1"
description = "A Django app for background task execution with multiple backends."
readme = "README.md"
license = "MIT"
requires-python = ">=3.13"
dependencies = [
"django>=6",
]
authors = [
{name = "Alexander Hinze-Huettl", email = "hinze.alex@gmail.com"},
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
]
[project.urls]
Homepage = "https://github.com/al-eax/django_ez_tasks"