forked from djrobstep/schemainspect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (29 loc) · 884 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = "schemainspect"
version = "3.0"
authors = [ "Robert Lechte <robertlechte@gmail.com>",]
license = "Unlicense"
readme = "README.md"
description = "Schema inspection for PostgreSQL (and possibly others)"
repository = "https://github.com/djrobstep/schemainspect"
homepage = "https://github.com/djrobstep/schemainspect"
[tool.poetry.dependencies]
python = ">=3.6,<4"
six = "*"
sqlalchemy = "*"
[tool.poetry.dev-dependencies]
sqlbag = ">=0.1.1616028516"
pytest = {version="*", python=">=3.5,<4"}
pytest-cov = "*"
pytest-clarity = {version=">=0.3.0-alpha.0", python=">=3.5,<4"}
psycopg2-binary = "*"
flake8 = "*"
isort = {version=">=5", python=">=3.6,<4"}
migra = "*"
black = { version = ">=19.10b0", python=">=3.6" }
[tool.poetry.scripts]
schemainspect = 'schemainspect:do_command'
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
line_length = 88