-
Notifications
You must be signed in to change notification settings - Fork 41
/
pyproject.toml
44 lines (39 loc) · 863 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
40
41
42
43
44
[build-system]
requires = ["setuptools>=64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mailmerge"
version = "2.2.4"
description = "A simple, command line mail merge tool"
keywords = ["mail merge", "mailmerge", "email"]
authors = [{ email = "[email protected]" }, { name = "Andrew DeOrio" }]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
"click",
"jinja2",
"markdown",
"html5lib"
]
[project.optional-dependencies]
dev = [
"twine",
"tox",
]
test = [
"check-manifest",
"freezegun",
"pycodestyle",
"pydocstyle",
"pylint",
"pytest",
"pytest-cov",
"pytest-mock",
]
[project.scripts]
mailmerge = "mailmerge.__main__:main"
[project.urls]
homepage = "https://github.com/awdeorio/mailmerge/"
[tool.setuptools]
packages = ["mailmerge"]