forked from datacontract/datacontract-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (54 loc) · 1.4 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
[project]
name = "datacontract-cli"
version = "0.9.6-2"
description = "Test data contracts"
readme = "README.md"
authors = [
{ name = "Jochen Christ", email = "[email protected]" },
{ name = "Stefan Negele", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"typer[all]~=0.9.0",
"pydantic>=2.5.3,<2.7.0",
"pyyaml~=6.0.1",
"requests~=2.31.0",
"fastapi==0.110.0",
"fastparquet==2024.2.0",
"python-multipart==0.0.9",
"rich~=13.7.0",
"simple-ddl-parser==1.0.3",
"soda-core-bigquery~=3.2.1",
"soda-core-duckdb~=3.2.1",
"soda-core-postgres~=3.2.1",
"soda-core-snowflake~=3.2.1",
"soda-core-spark[databricks]~=3.2.1",
"soda-core-spark-df~=3.2.1",
"snowflake-connector-python[pandas]>=3.6,<3.8",
"duckdb==0.10.0",
"fastjsonschema~=2.19.1",
"python-dotenv~=1.0.0",
"s3fs==2024.2.0",
"rdflib==7.0.0",
]
[project.optional-dependencies]
dev = [
"httpx==0.27.0",
"pytest",
"testcontainers-minio",
"testcontainers-postgres",
"testcontainers-kafka",
]
[project.urls]
Homepage = "https://cli.datacontract.com"
Issues = "https://github.com/datacontract/cli/issues"
[project.scripts]
datacontract = "datacontract.cli:app"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"