mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-02-23 10:27:23 -08:00
* migration redesign init * new color picker * changelog * added UI language selection * fix layout issue on recipe editor * remove git as dependency * added UI editor for original URL * CI/CD Tests * test: fixed migration routes Co-authored-by: Hayden <hay-kot@pm.me>
38 lines
789 B
TOML
38 lines
789 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"}
|
|
APScheduler = "^3.6.3"
|
|
SQLAlchemy = "^1.3.22"
|
|
Jinja2 = "^2.11.2"
|
|
python-dotenv = "^0.15.0"
|
|
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"
|
|
pytest-cov = "^2.11.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|