-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (52 loc) · 1.16 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
[tool.poetry]
name = "emo-bon-data-validation"
version = "0.1.0"
description = ""
authors = ["Cymon J. Cox <[email protected]>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
pydantic = "^2.9.1"
validators = "^0.34.0"
black = {extras = ["jupyter"], version = "^24.8.0"}
ruff = "^0.6.5"
pandas = "^2.2.3"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
pre-commit = "^3.8.0"
[tool.ruff.lint]
extend-select = [
# pyupgrade
"UP",
# pydocstyle
"E",
"W",
# pyflakes
"F",
# flake8
"S",
"B",
"SIM",
# isort
"I",
]
ignore = [
"E501", # long lines
]
[tool.ruff.lint.isort]
order-by-type = true
relative-imports-order = "closest-to-furthest"
extra-standard-library = ["typing"]
section-order = ["future", "standard-library", "third-party", "first-party", "local-folder"]
known-first-party = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = true
docstring-code-line-length = "dynamic"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"