[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 "] license = "AGPL-3.0" packages = [ { include = "microcosm", from="src" }, ] [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" PyYAML = "^6.0" [tool.poetry.dev-dependencies] pytest = "^6.2.5" autopep8 = "^1.6.0" pytest-mock = "^3.6.1" requests-mock = "^1.9.3" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"