-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 933 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
35
36
37
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "amelis-smime-decrypt"
version = "0.1.0"
description = "A script to fetch and decrypt S/MIME encrypted emails and extract PDF attachments."
authors = [
{ name = "Christian Gonzalez", email = "[email protected]" }
]
license = { text = "GPL-3.0-or-later" }
readme = "README.md"
requires-python = ">=3.8"
keywords = ["email", "smime", "decryption", "imap", "attachments"]
dependencies = [
"imapclient",
"M2Crypto",
"six",
"python-dotenv",
]
[project.optional-dependencies]
dev = [
"black",
# "pytest",
# "pytest-cov",
]
[project.scripts]
amelis-smime-decrypt = "amelis_smime_decrypt:main"
[project.urls]
Homepage = "https://github.com/nerdocs/amelis-smime-decrypt"
Repository = "https://github.com/nerdocs/amelis-smime-decrypt"
Issues = "https://github.com/nerdocs/amelis-smime-decrypt/issues"