-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
48 lines (43 loc) · 1.14 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "DSLR"
version = "0.4.0"
description = "Take lightning fast snapshots of your local Postgres databases."
authors = ["Mitchel Cabuloy <[email protected]>"]
license = "MIT"
keywords = ["database", "snapshot", "backup"]
readme = "README.md"
homepage = "https://github.com/mixxorz/DSLR"
repository = "https://github.com/mixxorz/DSLR"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Database",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.7"
click = "^8.1.3"
rich = "^12.5.1"
timeago = "^1.0.15"
tomli = "^2.0.1"
psycopg2 = { version = "^2.9.3", optional = true }
psycopg2-binary = { version = "^2.9.3", optional = true }
[tool.poetry.extras]
psycopg2 = ["psycopg2"]
psycopg2-binary = ["psycopg2-binary"]
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
flake8 = "^4.0.1"
black = "^22.6.0"
ipdb = "^0.13.9"
tox = "^3.25.1"
twine = "^4.0.1"
[tool.poetry.scripts]
dslr = "dslr.cli:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"