-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 813 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 813 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
[project]
name = "Pytition"
version = "2.9"
description = "Django app for self-hosted privacy-friendly online petitions"
authors = [
{name = "Yann Sionneau", email = "yann@sionneau.net"},
]
dependencies = [
"Django~=5.2.0",
"django-colorfield==0.10.1",
"django-tinymce==3.6.1",
"django-mailer==2.3",
"django-maintenance-mode",
"django-phonenumber-field[phonenumbers]==6.3.0",
"requests~=2.0",
"mysqlclient==2.0.1",
"django-widget-tweaks==1.4.3",
"beautifulsoup4~=4.6.3",
"django-formtools==2.2",
"bcrypt",
"lxml[html_clean]",
"uwsgi",
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "BSD 3-Clause"}
[tool.pdm]
distribution = false
[tool.pdm.dev-dependencies]
test = [
"coverage==4.5.2",
"sphinx",
"sphinx-rtd-theme"
]