-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (35 loc) · 916 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 = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "momomail"
dynamic = ["version"]
dependencies = [
"google-api-python-client",
"google-auth-httplib2",
"google-auth-oauthlib",
"pydantic"
]
requires-python = ">=3.10"
authors = [
{name = "YYLIZH", email = "ryne91009@gmail.com"},
]
description = "Mail Client"
license = {file = "LICENSE"}
keywords = ["gmail"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.setuptools.dynamic]
version = { attr = "momomail.VERSION" }
readme = { file = ["README.md"], content-type = "text/markdown" }
[project.urls]
Homepage = "https://github.com/YYLIZH/momomail"
Issues = "https://github.com/YYLIZH/momomail/issues"
[tool.setuptools]
packages = [
"momomail",
"momomail.gmail",
]