-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
72 lines (62 loc) · 1.67 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
[tool.poetry]
name = "oauth2-cli-auth"
version = "1.6.2"
description = "Authenticate against OAuth2 Provider in Python CLIs"
authors = ["Timo Reymann <mail@timo-reymann.de>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/timo-reymann/python-oauth2-cli-auth"
packages = [
{ include = "oauth2_cli_auth" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Environment :: Console",
"Environment :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix"
]
exclude = [
"**/*_test.py",
"**/__testdata__/**"
]
include = [
"LICENSE"
]
[tool.poetry.dependencies]
python = ">=3.9"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/timo-reymann/python-oauth2-cli-auth/issues"
[[tool.poetry.source]]
name = "testpypi"
url = "https://test.pypi.org/legacy/"
priority="explicit"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
coverage = "^7.3.2"
setuptools = "^78.0.0"
pydoctor = "^24.0.0"
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "*/*_test.py"]
[tool.coverage.report]
fail_under = 70
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pydoctor]
verbose = 0
warnings-as-errors = true
intersphinx = ["https://docs.python.org/3/objects.inv"]
docformat = "restructuredtext"
html-output = "gh-pages"
add-package = ["oauth2_cli_auth"]
project-name = "oauth2_cli_auth"
project-url = "https://github.com/timo-reymann/python-oauth2-cli-auth"
privacy = [
"HIDDEN:oauth2_cli_auth.*_test",
"HIDDEN:oauth2_cli_auth.conftest"
]
theme = "base"
template-dir = "pydoctor-theme"