-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
66 lines (62 loc) · 1.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "data-lineage"
version = "0.9.0"
description = "Open Source Data Lineage Tool for Redshift. Snowflake and many other databases"
authors = ["Tokern <[email protected]>"]
license = "MIT"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Database",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords=["data-lineage","postgres","snowflake","redshift","glue"]
readme="README.md"
homepage="https://tokern.io/"
repository="https://github.com/tokern/data-lineage/"
[tool.poetry.dependencies]
python = "^3.8"
pglast = "*"
inflection = "*"
networkx = "*"
click = "^7"
PyYAML = "*"
dbcat = "^0.7.1"
gunicorn = "*"
flask = "~=1.1"
flask-restless-ng = "*"
requests = "*"
furl = "*"
flask-restful = "*"
psycopg2 = "^2.9.1"
SQLAlchemy = "^1.3"
botocore = "^1.20"
rq = "^1.10.0"
redis = "^3.5.3"
[tool.poetry.dev-dependencies]
black = "==19.10b0"
flake8 = "*"
isort = "*"
pre-commit = "*"
pytest = "*"
pytest-cov = "*"
pipenv-setup = "*"
mypy = "*"
jupyter = "*"
pytest-flask = "*"
types-requests = "^0.1.13"
types-Flask = "^1.1.1"
types-PyYAML = "^5.4.3"
types-click = "^7.1.2"
fakeredis = "^1.6.1"
types-redis = "^3.5.15"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
data_lineage = "data_lineage.__main__:main"