-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (47 loc) · 1.18 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
[tool.poetry]
name = "phable"
version = "0.1.17"
description = ""
authors = ["Rick Jennings <rjennings055@gmail.com>"]
readme = "README.md"
packages = [{include = "phable"}]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.11"
pandas = {version = "^2.2.3", optional = true}
pyarrow = {version = "^17.0.0", optional = true}
polars = {version = "^1.9.0", optional = true}
[tool.poetry.extras]
pandas = ["pandas"]
pyarrow = ["pyarrow"]
polars = ["polars"]
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
flake8 = "^6.0.0"
mypy = "^1.1.1"
pytest = "^7.3.0"
isort = "^5.12.0"
auto-changelog = "^0.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
log_cli = true
log_level = "DEBUG"
log_cli_level = "DEBUG"
log_format = "[%(levelname)s]: %(message)s"
log_cli_format = "[%(levelname)s]: %(message)s"
log_date_format = "%Y-%m-%d %H:%M:%S"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[tool.isort]
profile = "black"
[tool.pylint.format]
max-line-length = "79"
[tool.pylint."MESSAGES CONTROL"]
disable = [
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring",
]
[tool.black]
line-length = 79