This commit is contained in:
long2ice
2020-05-11 00:09:13 +08:00
commit 75e7a46e85
13 changed files with 627 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[tool.poetry]
name = "alice"
version = "0.1.0"
description = "A database migrations tool for Tortoise ORM."
authors = ["long2ice <long2ice@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.8"
tortoise-orm = "*"
aiomysql = "*"
[tool.poetry.dev-dependencies]
taskipy = "*"
asynctest = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.taskipy.tasks]
export = "poetry export -f requirements.txt --without-hashes > requirements.txt"