-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.29 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
59
60
61
62
63
64
65
[tool.poetry]
name = "pandantic"
version = "1.0.0"
description = "Gone are the days of black-box dataframes in otherwise type-safe code! Pandantic builds off the Pydantic API to enable validation and filtering of the usual dataframe types (i.e., pandas, etc.)"
authors = [
"Wessel Huising <[email protected]>",
"Xavier Rojas Nogueira <[email protected]>",
]
readme = "README.md"
packages = [{ include = "pandantic", from = "src" }]
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.0.0"
pydantic = "^2.0.0"
pandas-stubs = "^2.0.3.230814"
multiprocess = "^0.70.15"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.0"
pre-commit = "^3.2.2"
black = "^23.3.0"
pylint = "^2.17.2"
isort = "^5.12.0"
mypy = "^1.2.0"
pre-commit-hooks = "^4.4.0"
safety = "^2.3.5"
scikit-learn = "^1.2.2"
pandera = "^0.14.5"
[tool.isort]
profile = "black"
lines_after_imports = 2
group_by_package = true
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"