-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (96 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
104 lines (96 loc) · 2.13 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sqlcompare"
version = "0.0.1"
description = "Python CLI and data diff tool for comparing SQL tables, SQL query results, CSV files, and Excel/XLSX files"
requires-python = ">=3.11"
dependencies = [
"pyyaml>=6.0.0",
"rich>=14.2.0",
"SQLAlchemy>=2.0.0",
"numpy!=2.4.0",
"pandas>=2.0.0",
"typer>=0.21.0",
"openpyxl>=3.1.0",
"duckdb>=1.0.0",
"duckdb-sqlalchemy>=0.10.0",
# "duckdb-extension-excel>=0.0.0"
]
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Luis Coimbra"}
]
keywords = [
"sql",
"data-diff",
"data-validation",
"analytics",
"csv-diff",
"query-comparison",
"duckdb",
"regression-testing",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/luisggc/sqlcompare"
Repository = "https://github.com/luisggc/sqlcompare"
Issues = "https://github.com/luisggc/sqlcompare/issues"
Documentation = "https://github.com/luisggc/sqlcompare#readme"
Examples = "https://github.com/luisggc/sqlcompare/tree/main/examples"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
]
postgres = [
"psycopg[binary]>=3.1.0",
]
mysql = [
"pymysql>=1.0.0",
]
snowflake = [
"snowflake-sqlalchemy>=1.5.0",
]
databricks = [
"databricks-sql-connector>=3.0.0",
]
duckdb = [
"duckdb>=1.0.0",
"duckdb-engine>=0.10.0",
"duckdb-extension-excel>=0.0.0",
]
mssql = [
"pyodbc>=5.0.0",
]
oracle = [
"oracledb>=2.0.0",
]
all = [
"psycopg[binary]>=3.1.0",
"pymysql>=1.0.0",
"snowflake-sqlalchemy>=1.5.0",
"databricks-sql-connector>=3.0.0",
"duckdb>=1.0.0",
"duckdb-engine>=0.10.0",
"pyodbc>=5.0.0",
"oracledb>=2.0.0",
]
[project.scripts]
sqlcompare = "sqlcompare.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["sqlcompare"]
[tool.hatch.build.targets.sdist]
packages = ["sqlcompare"]
[tool.uv]
package = true
[tool.pytest.ini_options]
pythonpath = ["."]