-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
executable file
·90 lines (81 loc) · 2.69 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[tool.poetry]
name = "reladiff"
version = "0.5.3"
description = "Command-line tool and Python library to efficiently diff rows across two different databases."
authors = ["Erez Shinan <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/erezsh/reladiff"
documentation = "https://reladiff.readthedocs.io/en/latest/"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Topic :: Database :: Database Engines/Servers",
"Typing :: Typed"
]
packages = [{ include = "reladiff" }]
[tool.poetry.dependencies]
python = "^3.8"
runtype = ">=0.5.0"
dsnparse = "*"
click = ">=8.1"
rich = "*"
toml = ">=0.10.2"
sqeleton = "^0.1.7"
mysql-connector-python = {version=">=8.0.29", optional=true}
psycopg2-binary = {version="*", optional=true}
snowflake-connector-python = {version=">=2.7.2", optional=true}
cryptography = {version="*", optional=true}
trino = {version=">=0.314.0", optional=true}
presto-python-client = {version="*", optional=true}
clickhouse-driver = {version="*", optional=true}
duckdb = {version=">=0.6.0", optional=true}
[tool.poetry.dev-dependencies]
parameterized = "*"
unittest-parallel = "*"
# preql = ">=0.2.19"
mysql-connector-python = "*"
psycopg2-binary = "*"
snowflake-connector-python = ">=2.7.2"
cryptography = "*"
trino = ">=0.314.0"
presto-python-client = "*"
clickhouse-driver = "*"
vertica-python = "*"
duckdb = ">=0.6.0"
# google-cloud-bigquery = "*"
# databricks-sql-connector = "*"
[tool.poetry.extras]
# When adding, update also: README + dev deps just above
preql = ["preql"]
mysql = ["mysql-connector-python"]
postgresql = ["psycopg2-binary"]
snowflake = ["snowflake-connector-python", "cryptography"]
presto = ["presto-python-client"]
oracle = ["cx_Oracle"]
# databricks = ["databricks-sql-connector"]
trino = ["trino"]
clickhouse = ["clickhouse-driver"]
vertica = ["vertica-python"]
duckdb = ["duckdb"]
all = ["mysql-connector-python", "psycopg2-binary", "snowflake-connector-python", "cryptography", "presto-python-client", "cx_Oracle", "trino", "clickhouse-driver", "vertica-python", "duckdb"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
reladiff = 'reladiff.__main__:main'
[tool.mypy]
no_implicit_optional=false
[tool.ruff]
line-length = 120
[tool.black]
line-length = 120
target-version = ['py38']