forked from xtsimpouris/imap-to-local-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (29 loc) · 883 Bytes
/
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
[project]
name = "mail-archiver"
version = "0.1.0"
description = "A python script to backup any IMAP capable email account to a HTML archive, nicely browsable, instead of weird folders (Maildir), one huge file (mbox), only needing a web browser to view."
authors = [
{name = "Remy van Elst"}
]
license = {text = "GPL-3.0"}
readme = "README.md"
requires-python = ">=3.11,<4.0"
dependencies = [
"bs4 (>=0.0.2,<0.0.3)",
"pyyaml (>=6.0.2,<7.0.0)",
"jinja2 (>=3.1.5,<4.0.0)",
"text-unidecode (>=1.3,<2.0)",
"chardet (>=5.2.0,<6.0.0)",
"click (>=8.1.8,<9.0.0)",
"python-slugify (>=8.0.4,<9.0.0)",
"tinydb (>=4.8.2,<5.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
packages = [
{ include = "mail-archiver" },
]
[tool.poetry.scripts]
archive = "mail-archiver.run:archive"