12345678910111213141516171819202122232425262728 |
- [tool.poetry]
- name = "baba-yaga"
- version = "0.1.0"
- description = ""
- authors = ["Getty Ritter <gettylefou@gmail.com>"]
- [tool.poetry.dependencies]
- python = "^3.8"
- flask = "^1.1.2"
- pystache = "^0.5.4"
- peewee = "^3.13.2"
- passlib = "^1.7.2"
- itsdangerous = "^1.1.0"
- mistune = "2.0.0a4"
- python-slugify = "^4.0.0"
- tinydb = "^3.15.2"
- flask-accept = "^0.0.6"
- [tool.poetry.dev-dependencies]
- mypy = "^0.770"
- black = "^19.10b0"
- invoke = "^1.4.1"
- pytest = "^5.4.1"
- uwsgi = "^2.0.18"
- [build-system]
- requires = ["poetry>=0.12"]
- build-backend = "poetry.masonry.api"
|