migra/pyproject.toml
2021-01-13 11:50:40 +11:00

40 lines
872 B
TOML

[tool.poetry]
name = "migra"
version = "1.0"
authors = [ "Robert Lechte <robertlechte@gmail.com>",]
license = "Unlicense"
readme = "README.md"
description = "Like `diff` but for PostgreSQL schemas"
repository = "https://github.com/djrobstep/migra"
homepage = "https://migra.djrobstep.com/"
[tool.poetry.dependencies]
python = "*"
sqlbag = "*"
six = "*"
# schemainspect = {path="../schemainspect"}
schemainspect = ">=0.1.1610498640"
psycopg2-binary = { version="*", optional = true }
[tool.poetry.dev-dependencies]
sqlbag = "*"
pytest = "*"
pytest-cov = "*"
pytest-clarity = ">=0.3.0-alpha.0"
psycopg2-binary = "*"
flake8 = "*"
isort = "*"
black = { version = ">=19.10b0", python=">=3.6" }
[tool.poetry.scripts]
migra = 'migra:do_command'
[tool.poetry.extras]
pg = ["psycopg2-binary"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
line_length = 88