-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
56 lines (51 loc) · 1.32 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
[build-system]
requires = [
"hatchling>=1.5.0",
]
build-backend = "hatchling.build"
[project]
name = "mailsuite"
description = "A Python package for retrieving, parsing, and sending emails"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.7"
authors = [
{ name = "Sean Whalen", email = "[email protected]" },
]
keywords = [
"IMAP",
"SMTP",
"email",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"dnspython>=2.0.0",
"expiringdict==1.2.2",
"html2text>=2020.1.16",
"IMAPClient>=2.1.0",
"mail-parser==3.15.0",
"publicsuffix2>=2.20190812",
]
dynamic = [
"version",
]
[project.urls]
Homepage = "https://github.com/seanthegeek/mailsuite/"
Documentation = "https://seanthegeek.github.io/mailsuite/"
Issues = "https://github.com/seanthegeek/mailsuite/issues"
Changelog = "https://github.com/seanthegeek/mailsuite/blob/master/CHANGELOG.md"
[tool.hatch.version]
path = "mailsuite/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/mailsuite",
]
[tool.hatch.build.targets.wheel]
packages = ["mailsuite"]