-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
31 lines (27 loc) · 912 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
30
31
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dc_mailer"
version = "0.1.5"
description = "A simple email alert utility for Python projects"
authors = [{name = "Denise Case", email = "denisecase@gmail.com"}]
readme = "README.md"
license = { file = "LICENSE.txt" }
requires-python = ">=3.11"
keywords = ["email", "alert", "notification"]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = []
[project.optional-dependencies]
dev = ["pytest", "twine", "build"]
[tool.setuptools]
packages = ["dc_mailer"]
[project.urls]
Homepage = "https://github.com/denisecase/dc-mailer"
Repository = "https://github.com/denisecase/dc-mailer"
BugTracker = "https://github.com/denisecase/dc-mailer/issues"