pymicrocosm/pyproject.toml

39 lines
862 B
TOML
Raw Normal View History

2022-01-12 20:40:35 +00:00
[tool.poetry]
name = "pymicrocosm"
2022-10-30 15:58:07 +00:00
version = "0.3.0"
2022-01-12 20:40:35 +00:00
description = "A tiny python-based micropub endpoint that supports a Gitea + drone static website"
authors = ["James Ravenscroft <ravenscroftj@gmail.com>"]
license = "AGPL-3.0"
readme="README.md"
2022-01-29 14:15:43 +00:00
packages = [
{ include = "microcosm", from="src" },
]
2022-01-12 20:40:35 +00:00
[tool.poetry.dependencies]
2023-07-09 15:11:50 +01:00
python = ">=3.8,<4.0.0"
2022-01-12 20:40:35 +00:00
Flask = "^2.0.2"
2022-02-06 14:22:29 +00:00
giteapy = {url = "https://github.com/dblueai/giteapy/archive/master.zip"}
2022-01-12 20:40:35 +00:00
requests = "^2.27.1"
python-dotenv = "^0.19.2"
python-slugify = "^5.0.2"
PyYAML = "^6.0"
Flask-Micropub = "^0.2.8"
2023-07-09 15:11:50 +01:00
pillow = "^10.0.0"
clientapi-forgejo = "^1.0.0"
loguru = "^0.7.2"
2022-01-12 20:40:35 +00:00
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
autopep8 = "^1.6.0"
2022-01-29 14:15:43 +00:00
pytest-mock = "^3.6.1"
requests-mock = "^1.9.3"
twine = "^4.0.1"
2022-01-12 20:40:35 +00:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"