-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 875 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 875 Bytes
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
[project]
name = "templateless"
description = "Ship faster by sending elegant emails using just code"
version = "0.1.0-alpha.4"
readme = "README.md"
authors = []
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = ["email", "templates"]
requires-python = ">=3.6"
dependencies = [
"requests>=2.27.1",
]
[project.urls]
Homepage = "https://templateless.com/"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["templateless", "templateless.components"]
[tool.setuptools.package-data]
templateless = ["py.typed"]