-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
92 lines (79 loc) · 1.95 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools>=65.4", "setuptools_scm[toml]>=7.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gapps"
description = "python interface of the google apps service"
readme = "README.md"
requires-python = ">=3.9"
license.file = "LICENSE"
keywords = ["appscript", "cardservice", "google workspace add-ons",
"docs", "sheet", "calendar", "gmail", "forms", "slide", "drive"]
authors = [
{name = "Serge Koudoro", email = "[email protected]"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pep517 >= 0.9.1",
"dataclasses-json >= 0.5.7",
"pydantic >= 1.9.0",
"google-auth >= 2.12.0",
"requests",
]
dynamic = ["version"]
[tool.setuptools_scm]
write_to = "gapps/_version.py"
[project.optional-dependencies]
demo = [
"fastapi",
"uvicorn",
"google-api-python-client>=2.68.0",
]
docs = [
"codecov",
"coverage",
"flake8",
"pytest",
"sphinx",
"ipython",
"ipdb",
"matplotlib",
"numpydoc",
"sphinx-copybutton",
"sphinx_rtd_theme",
"responses",
]
test = [
"black==22.1.0",
"flake8==4.0.1",
"pre-commit==2.17.0",
"pylint==2.12.2",
"pytest==7.1.0",
"pip-conflict-checker>=0.6.0",
]
typing = [
"importlib-metadata >= 5.1",
"mypy == 0.991",
"tomli",
"typing-extensions >= 3.7.4.3",
]
[project.urls]
Documentation = "https://github.com/skoudoro/gapps/tree/main#readme"
Source = "https://github.com/skoudoro/gapps"
Tracker = "https://github.com/skoudoro/gapps/issues"
[tool.black]
line-length = 90
fast = true
[tool.coverage.run]
branch = true
[tool.coverage.report]
fail_under = 100