fabcal/pyproject.toml

34 lines
714 B
TOML
Raw Normal View History

2022-03-27 23:24:59 +02:00
[tool.poetry]
name = "fabcal"
version = "0.0.1"
description = ""
authors = ["Fabian Müller <fabian@fablab-altmuehlfranken.de>"]
[tool.poetry.dependencies]
python = "^3.8"
icalendar = "^4.0.9"
fastapi = "^0.75.0"
uvicorn = {extras = ["standard"], version = "^0.17.6"}
Jinja2 = "^3.1.0"
Babel = "^2.9.1"
fastapi-cache2 = "^0.1.8"
aiohttp = {extras = ["speedups"], version = "^3.8.1"}
recurring-ical-events = "^1.0.1-beta.0"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
isort = "^5.10.1"
2022-03-27 23:24:59 +02:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
lines_between_types = 1
lines_after_imports = 2