Divent/pyproject.toml

37 lines
633 B
TOML
Raw Normal View History

2022-05-08 14:02:19 +00:00
[tool.poetry]
name = "divent"
version = "0.1.0"
description = ""
authors = ["Xéfir Destiny"]
license = "WTFPL"
[tool.poetry.dependencies]
python = "^3.8"
2022-07-30 15:01:45 +00:00
disnake = "2.5.2"
2022-07-07 00:23:36 +00:00
ics = "0.7.2"
2022-05-08 14:02:19 +00:00
python-dotenv = "0.20.0"
2022-07-25 11:59:12 +00:00
quart = "0.18.0"
2022-06-30 00:25:42 +00:00
requests = "2.28.1"
requests-oauthlib = "1.3.1"
2022-05-08 14:02:19 +00:00
[tool.poetry.dev-dependencies]
flake8 = "4.0.1"
2022-06-29 00:24:34 +00:00
black = "22.6.0"
2022-05-08 14:02:19 +00:00
isort = "5.10.1"
2022-07-20 00:33:55 +00:00
mypy = "0.971"
flake8-black = "0.3.3"
flake8-isort = "4.1.2.post0"
2022-07-30 00:37:19 +00:00
djlint = "1.9.2"
2022-05-08 14:02:19 +00:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
2022-05-30 15:31:33 +00:00
[tool.djlint]
extension = "j2"
profile = "jinja"
2022-07-04 22:05:12 +00:00
ignore="H022"