-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (60 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
70 lines (60 loc) · 1.93 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "django_cron_django5"
version = "0.6.2"
description = "Running python crons in a Django 5 project"
authors = [
{name = "Sumit Chachra", email = "chachra@tivix.com"},
{name = "Joren Hammudoglu", email = "jhammudoglu@gmail.com"},
{name = "Ravi Ojha", email = "ivarojha@gmail.com"},
]
maintainers = [
{name = "Ravi Ojha", email = "ivarojha@gmail.com"},
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
keywords = ["django", "cron", "django5", "scheduled tasks", "background jobs"]
dependencies = [
"django>=4.2,<6.0",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
]
[project.urls]
Homepage = "https://github.com/ticketping-com/django-cron"
Repository = "https://github.com/ticketping-com/django-cron"
"Bug Tracker" = "https://github.com/ticketping-com/django-cron/issues"
[project.optional-dependencies]
dev = [
"freezegun==1.5.1",
"mock==5.1.0",
"twine==6.2.0",
"wheel==0.45.1",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["demo*", "docs*"]
[tool.setuptools.package-data]
"*" = ["*.py"]