-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (46 loc) · 1.56 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "hoardy-mail"
version = "2.6.2"
authors = [{ name = "Jan Malakhovski", email = "[email protected]" }]
description = "Fetch, flag/mark, delete/expire, and perform other batch operations on messages residing on IMAP servers."
readme = "README.md"
license = { text = "GPL-3.0-or-later" }
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: End Users/Desktop",
"Topic :: Communications :: Email",
"Topic :: Office/Business",
"Topic :: System :: Archiving",
"Topic :: System :: Archiving :: Backup",
"Topic :: System :: Archiving :: Mirroring",
"Topic :: System :: Recovery Tools",
"Operating System :: POSIX",
"Environment :: Console",
]
keywords = [
"IMAP", "IMAP4",
"mail", "email", "e-mail",
"mail delivery agent", "MDA", "LDA",
"fetchmail", "getmail", "fdm",
"fetch", "archive", "download",
"delete", "expire",
"mark", "star",
"mark as seen", "mark as unseen",
"mark as flagged", "mark as unflagged",
]
dependencies = [
'importlib-metadata; python_version<"3.8"',
]
requires-python = ">=3.7"
[project.urls]
"Homepage" = "https://oxij.org/software/hoardy-mail/"
"GitHub" = "https://github.com/Own-Data-Privateer/hoardy-mail"
"Support Development" = "https://oxij.org/#support"
[project.scripts]
hoardy-mail = "hoardy_mail.__main__:main"
imaparms = "hoardy_mail.__main__:main"