-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 896 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
43
44
[tool.black]
exclude = '/(\.eggs|\.git|\.mypy_cache|\.venv.*|_build|build|dist)/'
line-length = 100
[tool.isort]
profile = "black"
line_length = 100
[tool.poetry]
name = "anilibria.py"
version = "1.0.4"
description = "An async API wrapper for the anilibria.tv"
authors = ["Damego <[email protected]>"]
license = "GPL-3.0"
packages=[
{include = "anilibria"}
]
[tool.poetry.dependencies]
python = "^3.10"
attrs = "^22.2.0"
cattrs = "^22.2.0"
orjson = "^3.8.5"
aiohttp = "^3.8.3"
tomli = "^2.0.1"
[tool.poetry.group.readthedocs]
optional=true
[tool.poetry.group.readthedocs.dependencies]
Sphinx = "^6.1.3"
sphinx-hoverxref = "^1.3.0"
furo = "^2022.12.7"
readthedocs-sphinx-search = "^0.1.2"
[build-system]
requires = [
"setuptools",
"tomli",
]
build-backend = "setuptools.build_meta"
#[build-system]
#requires = ["poetry-core>=1.3.0"]
#build-backend = "poetry.core.masonry.api"