-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (41 loc) · 1.24 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
[tool.poetry]
name = "septentrion"
version = "0.0.0"
description = "Python CLI tool for managing and executing hand-written PostgreSQL migrations"
authors = ["Python UKG Community <peopledoc-python@ukg.com>"]
license = "MIT License"
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
]
readme = "README.rst"
homepage = "https://septentrion.readthedocs.io/en/latest/"
repository = "https://github.com/peopledoc/septentrion"
documentation = "https://septentrion.readthedocs.io/en/latest/"
keywords = ["postgresql", "migration", "psql"]
[tool.poetry.scripts]
septentrion = 'septentrion.__main__:main'
[tool.poetry.dependencies]
python = "^3.7"
click = "*"
sqlparse = "*"
colorama = "*"
importlib-metadata = "*"
psycopg2 = {version = "*", optional = true}
psycopg2_binary = {version = "*", optional = true}
[tool.poetry.extras]
psycopg2 = ["psycopg2"]
psycopg2_binary = ["psycopg2_binary"]
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-click = "*"
pytest-mock = "*"
pytest-cov = "*"
Sphinx = "*"
sphinx-autodoc-typehints = "*"
sphinxcontrib-programoutput = "*"
dunamai = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"