forked from guillp/requests_oauth2client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
107 lines (97 loc) · 2.5 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[tool]
[tool.poetry]
name = "requests_oauth2client"
version = "1.2.0"
homepage = "https://github.com/guillp/requests_oauth2client"
description = "An OAuth2.x Client based on requests."
authors = ["Guillaume Pujol <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Security',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
]
packages = [
{ include = "requests_oauth2client" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
requests = ">=2.19.0"
binapy = ">=0.6.1"
furl = ">=2.1.2"
jwskate = ">=0.8"
[tool.poetry.dev-dependencies]
black = ">=22.10.0"
coverage = ">=6.3.1"
isort = ">=5.9.3"
flask = ">=2.0.1"
livereload = ">=2.6.3"
mypy = ">=1.4"
mkdocs = ">=1.3.1"
mkdocs-autorefs = ">=0.3.0"
mkdocs-include-markdown-plugin = ">=3.2.3"
mkdocs-material = ">=8.2.1"
mkdocs-material-extensions = ">=1.0.1"
mkdocstrings = { version = ">=0.18.0", extras = ["python"] }
pre-commit = ">=2.12.0"
pytest = ">=7.0.1"
pytest-cov = ">=3.0.0"
pytest-mypy = ">=0.9.1"
requests-mock = ">=1.9.3"
toml = ">=0.10.2"
tox = ">=4"
types-requests = ">=2.25.10"
types-cryptography = ">=3.3.15"
virtualenv = ">=20.2.2"
pytest-freezegun = "^0.4.2"
[tool.poetry.extras]
test = ["pytest", "pytest-cov"]
doc = ["mdformat", "mkdocs", "mkdocs-autorefs", "mkdocs-include-markdown-plugin", "mkdocs-material", "mkdocs-material-extensions", "mkdocstrings"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 96
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.mypy]
strict = true
implicit_reexport = true
show_error_context = true
show_column_numbers = true
show_error_codes = true
pretty = true
warn_unused_configs = true
warn_unused_ignores = true
warn_redundant_casts = true
[tool.pytest.ini_options]
requests_mock_case_sensitive = true
markers = [
"slow: marks tests as slow"
]
filterwarnings = [
"ignore::DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead."
]