-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
34 lines (30 loc) · 923 Bytes
/
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
[tool.poetry]
name = "structured-profiling"
version = "0.3.11"
description = "A Python library to check for data quality and automatically generate data tests. "
authors = ["Clearbox AI <[email protected]>"]
license = "GPL"
readme = "README.md"
homepage = "https://github.com/Clearbox-AI/StructuredDataProfiling"
repository = "https://github.com/Clearbox-AI/StructuredDataProfiling"
packages = [{ include = "structured_data_profiling" },]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
pandas = ">=1.5.2"
scikit-learn = ">=1.1.3"
scipy = ">=1.9.3"
numpy = ">1.23.3"
dateparser = "^1"
distfit = "^1.4"
great-expectations = ">=0.15"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
pytest-lazy-fixture = "^0.6.3"
flake8 = "^5.0.4"
black = "^22.8.0"
flake8-import-order = "^0.18.1"
flake8-black = "^0.3.3"
pre-commit = "^2.20.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"