-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
44 lines (37 loc) · 977 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
35
36
37
38
39
40
41
42
43
44
[tool.poetry]
name = "data-quality-reports"
version = "0.1.0"
description = "Python package to quickly generate basic data quality reports for your dataset."
authors = ["Garett Sidwell <[email protected]>"]
license = "LICENSE.md"
readme = "README.md"
packages = [{include = "data_quality_reports"}]
[tool.poetry.dependencies]
python = "^3.9"
pandas = "^2.0.3"
numpy = "^1.25.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
black = "^23.7.0"
flake8 = "^6.0.0"
pre-commit = "^3.3.3"
mypy = "^1.4.1"
isort = "^5.12.0"
commitizen = "^3.5.3"
pandas-stubs = "^2.0.2.230605"
ipykernel = "^6.24.0"
[tool.black]
line-length = 119
target-version = ['py39', 'py310']
[tool.isort]
profile = "black"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "pep440"
version_provider = "poetry"
update_changelog_on_bump = true
major_version_zero = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"