-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (38 loc) · 974 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
40
41
42
[project]
name = "aiohttp-oauth2-client"
version = "1.0.2"
description = "OAuth2 support for aiohttp client"
authors = [{name = "Stijn Caerts", email = "[email protected]"}]
readme = "README.md"
keywords = ["oauth2", "aiohttp"]
dependencies = [
"aiohttp~=3.8",
"pydantic~=2.7",
"rich"
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = [
"pre-commit",
"ruff",
"pytest",
"pytest-asyncio",
"pytest-mock",
"nest-asyncio",
"aioresponses"
]
docs = [
"sphinx~=7.3.7",
"furo",
"autodoc_pydantic",
"sphinx-copybutton"
]
[project.urls]
"Homepage" = "https://github.com/VITObelgium/aiohttp-oauth2-client"
"Source" = "https://github.com/VITObelgium/aiohttp-oauth2-client.git"
"Issues" = "https://github.com/VITObelgium/aiohttp-oauth2-client/issues"
[tool.setuptools.packages.find]
include = ["aiohttp_oauth2_client*"]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"