forked from fodfodfod/Email-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (47 loc) · 1.96 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "email_draft_generator"
version = "0.1.2"
description = "A utility to generate E-mail drafts from a list of E-mail addresses."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
keywords = ["email", "gmail", "email-template", "email-generator"]
# This should be your name or the name of the organization who originally authored the project, and a valid email address corresponding to the name listed.
authors = [
{ name = "Brandon Clague", email = "[email protected]" },
{ name = "Max Nargang", email = "[email protected]" },
]
# This should be your name or the names of the organization who currently maintains the project, and a valid email address corresponding to the name listed.
maintainers = [{ name = "Max Nargang", email = "[email protected]" }]
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
"Intended Audience :: Customer Service",
"Topic :: Communications :: Email :: Mailing List Servers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"google-api-python-client",
"google-auth-httplib2",
"google-auth-oauthlib",
"json-fix",
]
[project.optional-dependencies]
packaging = ["pyinstaller", "pillow"]
[project.urls]
"Homepage" = "https://github.com/CoffeeCoder1/Email-Generator"
"Bug Reports" = "https://github.com/CoffeeCoder1/Email-Generator/issues"
"Source" = "https://github.com/CoffeeCoder1/Email-Generator"
[project.scripts]
email-generator = "email_draft_generator.main:main"
email-list-parser = "email_draft_generator.file_parser.main:main"
email-generator-gui = "email_draft_generator.gui.main:main"
email-template-editor-gui = "email_draft_generator.gui.template_editor:main"