mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-08-04 21:15:22 +02:00
39 lines
812 B
TOML
39 lines
812 B
TOML
|
[tool.poetry]
|
||
|
name = "mealie"
|
||
|
version = "0.1.0"
|
||
|
description = "A Recipe Manager"
|
||
|
authors = ["Hayden <hay-kot@pm.me>"]
|
||
|
license = "MIT"
|
||
|
|
||
|
[tool.poetry.scripts]
|
||
|
start = "app:app"
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.8"
|
||
|
aiofiles = "0.5.0"
|
||
|
aniso8601 = "7.0.0"
|
||
|
appdirs = "1.4.4"
|
||
|
fastapi = "^0.63.0"
|
||
|
uvicorn = {extras = ["standard"], version = "^0.13.0"}
|
||
|
GitPython = "^3.1.12"
|
||
|
APScheduler = "^3.6.3"
|
||
|
SQLAlchemy = "^1.3.22"
|
||
|
Jinja2 = "^2.11.2"
|
||
|
python-dotenv = "^0.15.0"
|
||
|
mongoengine = "^0.22.1"
|
||
|
python-slugify = "^4.0.1"
|
||
|
requests = "^2.25.1"
|
||
|
PyYAML = "^5.3.1"
|
||
|
extruct = "^0.12.0"
|
||
|
scrape-schema-recipe = "^0.1.3"
|
||
|
python-multipart = "^0.0.5"
|
||
|
|
||
|
[tool.poetry.dev-dependencies]
|
||
|
pylint = "^2.6.0"
|
||
|
black = "^20.8b1"
|
||
|
pytest = "^6.2.1"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core>=1.0.0"]
|
||
|
build-backend = "poetry.core.masonry.api"
|
||
|
|