aerich/pyproject.toml
2020-05-25 18:02:56 +08:00

33 lines
711 B
TOML

[tool.poetry]
name = "aerich"
version = "0.1.8"
description = "A database migrations tool for Tortoise ORM."
authors = ["long2ice <long2ice@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.8"
tortoise-orm = "*"
asyncclick = "*"
pydantic = "*"
[tool.poetry.dev-dependencies]
taskipy = "*"
flake8 = "*"
isort = "*"
black = "^19.10b0"
pytest = "*"
aiomysql = "*"
asyncpg = "*"
pytest-xdist = "*"
mypy = "*"
pytest-asyncio = "*"
[tool.taskipy.tasks]
export = "poetry export -f requirements.txt --without-hashes > requirements.txt"
export-dev = "poetry export -f requirements.txt --dev --without-hashes > requirements-dev.txt"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"