generated from Damego/python-pypi-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (37 loc) · 971 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
45
46
[tool.black]
exclude = '/(\.eggs|\.git|\.mypy_cache|\.venv.*|_build|build|dist)/'
line-length = 100
[tool.isort]
profile = "black"
line_length = 100
[tool.poetry]
name = "interactions-restful"
version = "2.0.0"
description = "A library for interactions.py allowing runtime API structures"
authors = ["Damego <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
discord-py-interactions = "^5.0.0"
[tool.poetry.group.fastapi]
optional = true
dependencies = {"fastapi" = "^0.92.0"}
[tool.poetry.group.quart]
optional = true
dependencies = {"quart" = "^0.15.0"}
[tool.poetry.group.uvicorn]
optional = true
dependencies = {"uvicorn" = "^0.15.0"}
[tool.poetry.group.hypercorn]
optional = true
dependencies = {"hypercorn" = "^0.14.0"}
[tool.poetry.group.daphne]
optional = true
dependencies = {"daphne" = "^4.0.0"}
[build-system]
requires = [
"setuptools",
"tomli",
]
build-backend = "setuptools.build_meta"