-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
22 lines (19 loc) · 927 Bytes
/
pyproject.toml
File metadata and controls
22 lines (19 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[build-system]
requires = ["setuptools>=77.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "protonmail-api-client"
version = "2.4.3"
description = "This is not an official python ProtonMail API client. it allows you to read, send and delete messages in protonmail, as well as render a ready-made template with embedded images."
readme = "README.md"
authors = [{ name = "opulentfox-29", email = "3acqw2bx@duck.com" }]
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
keywords = ["protonmail", "api", "client", "proton", "proton-mail", "send", "read", "mail", "email", "python", "python3"]
requires-python = ">=3.9"
dynamic = ["dependencies", "optional-dependencies"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
optional-dependencies = { dev = { file = ["requirements-dev.txt"] } }
[project.urls]
Homepage = "https://github.com/opulentfox-29/protonmail-api-client"