-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
38 lines (34 loc) · 1.09 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
[tool.poetry]
name = "pandas-checks"
version = "0.3.1"
description = "Non-invasive health checks for Pandas method chains"
authors = ["Chad Parmet <[email protected]>"]
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/cparmet/pandas-checks"
documentation = "https://cparmet.github.io/pandas-checks/"
keywords = ["pandas", "method chains", "data science", "data engineering"]
[tool.poetry.urls]
"Issues" = "https://github.com/cparmet/pandas-checks/issues"
[tool.poetry.dependencies]
python = "^3.8" # For Python 3.12 tests, replace with python = ">=3.9.1,<4.0"
emoji = ">=2.12.1"
ipython = ">=7.23.1"
Jinja2 = ">=3.1.4"
matplotlib = ">=3.5.3"
pandas = ">=1.4,<3.0"
termcolor = ">=2.3.0"
[tool.poetry.group.dev.dependencies]
ipykernel = ">=6.16.2"
pre-commit = "3.5.0" # Pin to fix trouble
pytest = "^8.2.2"
pytest-cases = "^3.8.5"
pyarrow = "^16.1.0"
openpyxl = "^3.1.4"
setuptools = ">=65.0.0"
mkdocs = "^1.6.0"
mkdocstrings = {extras = ["python"], version = "^0.25.1"}
mkdocs-material = "^9.5.27"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"