-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 836 Bytes
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 836 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
[project]
name = "Django Slideshow"
version = "0.0.1"
description = "A perfectly simple Django Slideshow App"
authors = [
{name = "Mario Munoz", email = "pythonbynight@gmail.com"},
]
dependencies = [
"django>=4.1.1",
"gunicorn>=20.1.0",
"jinja2>=3.1.2",
"django-render-block>=0.9.1",
"pydantic-django>=0.1.1",
"pydantic>=1.10.2",
"django-htmx-refresh>=0.0.7",
"django-htmx>=1.12.2",
]
requires-python = ">=3.10"
license = {text = "MIT"}
[project.optional-dependencies]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool]
[tool.pdm]
[tool.pdm.dev-dependencies]
test = [
"pytest>=7.1.3",
"django-debug-toolbar>=3.7.0",
]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
ignore_missing_imports_per_module = true
files = [
"./slidjo"
]