fabcal/pyproject.toml

39 lines
850 B
TOML

[tool.poetry]
name = "fabcal"
version = "0.0.1"
description = ""
authors = ["Fabian Müller <fabian@fablab-altmuehlfranken.de>"]
include = [
{ path = "static", format = ["sdist", "wheel"] },
{ path = "templates", format = ["sdist", "wheel"] },
]
[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"
aiohttp = {extras = ["speedups"], version = "^3.8.1"}
recurring-ical-events = "^1.0.1-beta.0"
pyyaml = "^6.0"
asyncache = "^0.3.1"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
isort = "^5.10.1"
[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