-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (45 loc) · 1.27 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gpeopleapiwrapper"
version = "0.3"
license = { text = "MIT" }
authors = [
{ name = "Martin Holtschneider", email = "[email protected]" },
]
description = "A wrapper around the Google People API"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',]
dependencies = [
"google-api-python-client>=2.84.0",
"google_auth_oauthlib>=0.1.0",
"ratelimit>=2.2.1"
]
[project.urls]
"Homepage" = "https://github.com/holtschn/gpeopleapiwrapper"
[project.optional-dependencies]
test = [
"coverage>=7.2.3",
"pylama>=8.4.0",
]
publish = [
"build>=0.10.0",
"twine>=4.0.2"
]
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_also = [
# Don't complain about abstract methods, they aren't run:
"@(abc\\.)?abstractmethod",
]