31 lines
551 B
TOML
31 lines
551 B
TOML
|
[tool.poetry]
|
||
|
name = "divent"
|
||
|
version = "0.1.0"
|
||
|
description = ""
|
||
|
authors = ["Xéfir Destiny"]
|
||
|
license = "WTFPL"
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.8"
|
||
|
disnake = "2.5.0"
|
||
|
ics = "0.7"
|
||
|
python-dotenv = "0.20.0"
|
||
|
quart = "0.17.0"
|
||
|
sentry-sdk = {extras = ["quart"], version = "1.5.11"}
|
||
|
|
||
|
|
||
|
[tool.poetry.dev-dependencies]
|
||
|
flake8 = "4.0.1"
|
||
|
black = "22.3.0"
|
||
|
isort = "5.10.1"
|
||
|
mypy = "0.950"
|
||
|
flake8-black = "0.3.2"
|
||
|
flake8-isort = "4.1.1"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core>=1.0.0"]
|
||
|
build-backend = "poetry.core.masonry.api"
|
||
|
|
||
|
[tool.isort]
|
||
|
profile = "black"
|