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"
|
|
|
|
|
2022-10-22 12:07:40 +01:00
|
|
|
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]
|
|
|
|
python = "^3.7.1"
|
|
|
|
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"
|
2022-01-29 15:04:27 +00:00
|
|
|
PyYAML = "^6.0"
|
2022-10-22 11:56:50 +01:00
|
|
|
Flask-Micropub = "^0.2.8"
|
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"
|
2022-10-22 12:07:40 +01:00
|
|
|
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"
|