-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 884 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
[tool.poetry]
name = "bug-buddy"
version = "1.0.4"
description = "Auto cache and track Python exceptions via Python decorators."
authors = ["Spencer Seale <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "bug_buddy", from = "src/python"}]
[tool.poetry.dependencies]
python = "^3.10"
attrs = "^23.2.0"
pydantic = "^2.5.3"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.11"
pre-commit = "^3.6.0"
black = "^23.12.1"
pytest = "^7.4.4"
sphinx = "^7.2.6"
[tool.black]
line-length = 99
[tool.ruff]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"PD", # pandas-vet
"T20", # flake8-print
]
line-length = 99
fix = true
logger-objects = ["logging_setup.logger"]
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"