-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 937 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 937 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
33
34
35
36
37
38
39
40
41
42
43
[project]
name = "django-dbtasks"
version = "0.4.0"
description = "Database task backend and runner for Django tasks."
readme = "README.md"
authors = [
{ name = "Dan Watson", email = "watsond@imsweb.com" }
]
requires-python = ">=3.12"
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django :: 6",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = []
[project.optional-dependencies]
serve = [
"granian[reload]>=2.4.2",
]
[dependency-groups]
dev = [
"django>=6.0",
"mysql-connector-python>=9.5.0",
"psycopg>=3.3.2",
]
[project.urls]
Homepage = "https://github.com/imsweb/django-dbtasks"
[build-system]
requires = ["uv_build>=0.9.2,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "dbtasks"
[tool.ruff.lint]
extend-select = ["I"]