-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (51 loc) · 1.57 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
[project]
name = "agentic-django-example"
dynamic = ["version"]
description = "Demo Django app showcasing the agentic-django library: agent runs, tool calling, HTMX UI, and optional background tasks"
authors = [
{name = "B.T. Franklin", email = "brandon.franklin@gmail.com"},
]
readme = "README.md"
requires-python = ">=3.14"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Framework :: Django",
]
dependencies = [
"agentic-django[rq]>=0.3.0",
"django-htmx>=1.29.0",
"django-rq>=4.2.0",
"promptdown>=1.1.6",
]
[project.urls]
Homepage = "https://github.com/btfranklin/agentic-django-example"
Issues = "https://github.com/btfranklin/agentic-django-example/issues"
Changelog = "https://github.com/btfranklin/agentic-django-example/releases"
Repository = "https://github.com/btfranklin/agentic-django-example.git"
[build-system]
requires = ["pdm-backend>=2.0.0"]
build-backend = "pdm.backend"
[dependency-groups]
dev = [
"pytest>=9.1.1",
"pytest-django>=4.14.0",
"ruff>=0.16.6",
"markdown-it-py>=4.2.0",
"packaging>=26.3",
]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "agentic_django_example.settings"
python_files = ["test_*.py"]
pythonpath = ["apps"]
[tool.pdm.version]
source = "scm"
[tool.pdm.scripts]
lint = "ruff check ."
test = "pytest"
check = {composite = ["lint", "test"]}