This repository was archived by the owner on Oct 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (63 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (63 loc) · 1.29 KB
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
66
67
68
69
70
71
72
[project]
name = "nestegg"
version = "0.0.1"
description = "A FastAPI application to compare Brazilian investment indexes"
authors = [
{name = "kiraum", email = "tfgoncalves@xpto.it"},
]
dependencies = [
"fastapi",
"uvicorn",
"pydantic",
"httpx",
"python-dateutil",
"pytz",
"click",
"backoff",
"uv",
"pytest",
"black",
"ruff",
"mypy",
"pytest-asyncio",
"respx",
"pytest-cov",
"isort",
"pylint",
"pre-commit",
"flake8",
"typer",
"jinja2",
]
requires-python = ">=3.9"
[project.scripts]
nestegg = "nestegg.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 120
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "B", "UP"]
[tool.pylint.messages_control]
disable = [
"R0913", # too-many-arguments
"R0917", # too-many-positional-arguments
"R0914", # too-many-locals
"R0915", # too-many-statements
"R0911", # too-many-return-statements
"R0903", # too-few-public-methods
"R0912", # too-many-branches
"C0302", # too-many-lines
]
[tool.pylint.format]
max-line-length = 120
[tool.flake8]
ignore = ["W503"]
[tool.isort]
profile = "black"
line_length = 120
[tool.black]
line-length = 120
target-version = ["py39"]