-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (60 loc) · 1.69 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (60 loc) · 1.69 KB
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
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zasend"
version = "0.1.2"
description = "Python SDK for the zaSend transactional email API and SMTP service"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{name = "zaSend", email = "support@zasend.com"},
]
keywords = [
"email",
"transactional-email",
"transactional-email-api",
"email-api",
"email-sdk",
"email-service",
"smtp",
"smtp-relay",
"send-email",
"python-email",
"django-email",
"flask-email",
"fastapi-email",
"webhooks",
"dkim",
"spf",
"dmarc",
"zasend",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Communications :: Email",
"Topic :: Communications :: Email :: Mail Transport Agents",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"requests>=2.25",
]
[project.urls]
Homepage = "https://zasend.com"
Documentation = "https://zasend.com/docs"
Repository = "https://github.com/lr2bmail/zasend-python"
Issues = "https://github.com/lr2bmail/zasend-python/issues"
Changelog = "https://github.com/lr2bmail/zasend-python/releases"
[tool.setuptools.packages.find]
include = ["zasend*"]