This repository was archived by the owner on Aug 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (39 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
50 lines (39 loc) · 1.26 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
[tool.poetry]
name = "easy-ge"
version = "0.1.12.4"
description = "A package that simplifies usage of Great Expectations tool for Data Validation."
authors = ["Elsayed91 <elsayed.is@outlook.com>"]
readme = "docs/pypi_readme.md"
packages = [{include = "easy_ge"}]
repository = "https://github.com/Elsayed91/easy_ge"
keywords = ["Great Expectations", "data quality", "data validation"]
[tool.poetry.dependencies]
python = "^3.10, <3.13"
pyyaml = "^6.0"
jsonschema = "^4.18.0"
jinja2 = "^3.1.2"
google-cloud-storage = {version = "^2.10.0", optional = true}
google-cloud-secret-manager = {version = "^2.16.2", optional = true}
gcsfs = {version = "^2023.6.0", optional = true}
pyarrow = "^12.0.1"
great-expectations = {extras = ["s3"], version = "^0.17.4"}
fsspec = "^2023.6.0"
boto3 = "^1.28.2"
scipy = "^1.10.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pre-commit = "^3.3.3"
flake8 = "^6.0.0"
isort = "^5.12.0"
localstack = "^2.1.0"
awscli-local = "^0.20"
pytest-mock = "^3.11.1"
[tool.poetry.extras]
aws = ["s3fs"]
google = ["google-cloud-secret-manager", "google-cloud-storage", "gcsfs"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = "ignore::DeprecationWarning"
pythonpath = "easy_ge"