pymicrocosm/pyproject.toml

24 lines
607 B
TOML
Raw Normal View History

2022-01-12 20:40:35 +00:00
[tool.poetry]
name = "pymicrocosm"
version = "0.1.0"
description = "A tiny python-based micropub endpoint that supports a Gitea + drone static website"
authors = ["James Ravenscroft <ravenscroftj@gmail.com>"]
license = "AGPL-3.0"
[tool.poetry.dependencies]
python = "^3.7.1"
Flask = "^2.0.2"
giteapy = {git = "https://github.com/dblueai/giteapy.git"}
requests = "^2.27.1"
python-dotenv = "^0.19.2"
python-slugify = "^5.0.2"
uvicorn = "^0.16.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
autopep8 = "^1.6.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"