forked from datafold/data-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·62 lines (55 loc) · 1.76 KB
/
Copy pathpyproject.toml
File metadata and controls
executable file
·62 lines (55 loc) · 1.76 KB
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
[tool.poetry]
name = "data-diff"
version = "0.2.3"
description = "Command-line tool and Python library to efficiently diff rows across two different databases."
authors = ["Datafold <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/datafold/data-diff"
documentation = ""
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Topic :: Database :: Database Engines/Servers",
"Typing :: Typed"
]
packages = [{ include = "data_diff" }]
[tool.poetry.dependencies]
python = "^3.7.1"
runtype = "^0.2.6"
dsnparse = "*"
click = "^8.1"
rich = "^10.16.2"
toml = "^0.10.2"
preql = { version = "^0.2.15", optional = true }
psycopg2 = { version = "*", optional = true }
mysql-connector-python = { version = "*", optional = true}
snowflake-connector-python = { version = "*", optional = true }
[tool.poetry.dev-dependencies]
mysql-connector-python = "*"
preql = "^0.2.15"
snowflake-connector-python = "*"
psycopg2 = "*"
presto-python-client = "*"
parameterized = "*"
unittest-parallel = "*"
[tool.poetry.extras]
# When adding, update also: README + dev deps just above
preql = ["preql"]
mysql = ["mysql-connector-python"]
postgresql = ["psycopg2"]
snowflake = ["snowflake-connector-python"]
presto = ["presto-python-client"]
oracle = ["cx_Oracle"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
data-diff = 'data_diff.__main__:main'