[tool.poetry] name = "alice" version = "0.1.0" description = "A database migrations tool for Tortoise ORM." authors = ["long2ice "] [tool.poetry.dependencies] python = "^3.8" tortoise-orm = {git = "https://github.com/tortoise/tortoise-orm.git", branch = "develop"} aiomysql = "*" asyncclick = "*" dill = "*" [tool.poetry.dev-dependencies] taskipy = "*" asynctest = "*" flake8 = "*" [build-system] requires = ["poetry>=0.12"] build-backend = "poetry.masonry.api" [tool.taskipy.tasks] export = "poetry export -f requirements.txt --without-hashes > requirements.txt"