-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (56 loc) · 1.3 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "finance-tracker"
version = "1.0.0"
description = "Advanced personal finance tracking with SCPI, Bitcoin, insurance, and portfolio analysis"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Developer", email = "dev@example.com" }
]
dependencies = [
"sqlmodel>=0.0.14",
"typer[all]>=0.9.0",
"requests>=2.31.0",
"weasyprint>=59.0",
"pydantic>=2.0.0",
"python-dateutil>=2.8.2",
"tabulate",
"streamlit",
"matplotlib",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"ruff>=0.1.0",
"black>=23.0.0",
"mypy>=1.5.0",
"types-requests>=2.31.0",
]
[project.scripts]
finance-tracker = "finance_tracker.cli:app"
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.ruff]
line-length = 100
target-version = "py311"
select = [
"E", "W", "F", "I", "N", "UP", "B", "A", "C4", "PIE", "SIM", "RUF"
]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
check_untyped_defs = true
no_implicit_optional = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --tb=short"