generated from SpaceShaman/pypi-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 913 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 913 Bytes
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
35
[tool.poetry]
name = "SQLift"
version = "0.2.3"
description = "Simple CLI migration tool for SQL databases"
license = "MIT"
authors = ["SpaceShaman <spaceshaman@tuta.io>"]
readme = "README.md"
homepage = "https://github.com/SpaceShaman/SQLift"
repository = "https://github.com/SpaceShaman/SQLift"
documentation = "https://github.com/SpaceShaman/SQLift"
keywords = ["cli", "postgres", "sql", "database", "sqlite", "postgresql", "migration", "sqlite3"]
classifiers = [
"Programming Language :: SQL",
]
[tool.poetry.dependencies]
python = ">=3.10,<4"
typer = "^0.15"
psycopg = {extras = ["binary"], version = "^3", optional = true}
[tool.poetry.extras]
postgres = ["psycopg"]
[tool.poetry.group.dev.dependencies]
pytest = "^8"
pytest-cov = "^5"
ruff = "^0.5"
mypy = "^1.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
sqlift = "sqlift.main:app"