-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
61 lines (54 loc) · 1.82 KB
/
pyproject.toml
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
[tool.poetry]
name = "nuntius"
version = "2.4.3"
description = "A newsletter app to be used with Django or standalone."
authors = ["Jill Royer <[email protected]>", "Salomé Cheysson <[email protected]>", "Alexandra Puret <[email protected]>"]
license = "GPLv3"
readme = "README.md"
repository = "https://github.com/lafranceinsoumise/nuntius"
classifiers= [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Communications :: Email",
]
packages = [
{ include = "nuntius" }
]
[tool.poetry.dependencies]
python = "^3.8"
Django = ">=2.0"
Pillow = ">=9.0.1"
django-stdimage = "*"
inscriptis = "2.5.*"
tenacity = "*"
django-anymail = { version = "*", optional = true }
boto3 = { version = "*", optional = true }
mysqlclient = { version = "*", optional = true }
django-push-notifications = {version = "^3.1.0", extras = ["FCM", "WP"]}
apns = {version = ">=2.0.1", optional = true}
pywebpush = {version = ">=1.14.0", optional = true}
dj-database-url = ">=1.2.0"
pillow = "10.1.0"
[tool.poetry.dev-dependencies]
tqdm = "^4.60.0"
black = "^23.1.0"
[tool.poetry.extras]
anymail = ["django-anymail", "boto3"]
mysql = ["mysqlclient"]
push = ["django-push-notifications", "apns", "pywebpush"]
[tool.poetry.group.dev.dependencies]
ipython = "^8.11.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"