-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
29 lines (26 loc) · 927 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "maildropy"
version = "1.0.0"
#dynamic = ["version"]
authors = [
{ name="Olivier LEVILLAIN", email="[email protected]" },
]
description = "A Python package to read emails from maildrop.cc"
readme = "README.md"
requires-python = ">=3.9"
dependencies=["requests", "python-dotenv", "certifi", "urllib3"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
keywords = ["python", "maildrop", "mail", "disposable", "throwable"]
[project.urls]
Homepage = "https://github.com/leolivier/maildropy"
Repository = "https://github.com/leolivier/maildropy.git"
Issues = "https://github.com/leolivier/maildropy/issues"
Download = "https://github.com/leolivier/maildropy/archive/refs/tags/1.0.0.tar.gz"