-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 1017 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
32
33
34
35
36
37
38
39
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "wmul_emailer"
authors = [{name = "Michael Stanley", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Communications :: Email"
]
dynamic = ["version"]
description = "Utility to send an email to multiple addresses."
dependencies = [
"click",
"wmul_click_utils"
]
[project.scripts]
wmul_send_test_email = "wmul_emailer.cli:send_test_email"
[project.optional-dependencies]
test = [
"pytest", "pytest-mock", "wmul_test_utils"
]
tox = [
"tox"
]
[project.urls]
"Homepage" = "https://github.com/MikeTheHammer/wmul_emailer"
"Bug Tracker" = "https://github.com/MikeTheHammer/wmul_emailer/issues"