-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
34 lines (30 loc) · 894 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 = "tusker"
version = "0.5.1"
authors = ["Michael P. Jung <[email protected]>"]
license = "Unlicense"
readme = "README.md"
description = "A PostgreSQL specific migration tool"
repository = "https://github.com/bikeshedder/tusker"
homepage = "https://github.com/bikeshedder/tusker"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 4 - Beta",
"Topic :: Database",
"Topic :: Utilities",
]
[tool.poetry.scripts]
tusker = "tusker:main"
[tool.poetry.dependencies]
python = "^3.7"
importlib-metadata = {version = "^1.0", python = "<3.8"}
migra = "^3.0.1621480950"
tomlkit = "^0.11"
sqlalchemy = "^1.4.25"
psycopg2 = "^2.9.5"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"