-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (38 loc) · 924 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
43
44
45
[project]
name = "financas-automatizadas"
version = "0.1.0"
description = "My finance management project"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"python-decouple",
"requests",
"python-dateutil",
"ynab-sdk",
"pydantic>=2.9.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/financas_automatizadas"]
[tool.pytest.ini_options]
python_files = ["test_*.py", "*_tests.py"]
addopts = "-vv --cov=financas_automatizadas --durations=5 --disable-warnings"
testpaths = ["tests"]
console_output_style = "progress"
[tool.ruff]
select = ["E", "F", "I"]
ignore = []
line-length = 88
[tool.uv]
dev-dependencies = [
"freezegun>=1.5.1",
"ipdb>=0.13.13",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"requests-mock>=1.12.1",
"ruff>=0.6.5",
]