feat: project setup with dependencies

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-10 14:24:13 -05:00
parent 3f8b1d9056
commit eb4bfda1db
8 changed files with 19 additions and 0 deletions

19
pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "spending-analysis"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
"PySide6>=6.6",
"sqlalchemy>=2.0",
"pandas>=2.0",
"matplotlib>=3.8",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-qt>=4.2",
]
[project.scripts]
spending-analysis = "src.main:main"

0
src/__init__.py Normal file
View File

0
src/models/__init__.py Normal file
View File

0
src/services/__init__.py Normal file
View File

0
src/ui/__init__.py Normal file
View File

0
tests/__init__.py Normal file
View File

0
tests/models/__init__.py Normal file
View File

View File