-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 2.05 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (73 loc) · 2.05 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
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "accounti"
version = "0.1.0-dev"
description = "KI-gestützte Buchhaltungsautomatisierung für deutsche Unternehmen"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{ name = "accounti contributors" },
]
keywords = ["accounting", "buchhaltung", "datev", "skr03", "bwa", "ai", "automation"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business :: Financial :: Accounting",
]
dependencies = [
"sqlalchemy>=2.0",
"psycopg[binary]>=3.1",
"alembic>=1.13",
"pydantic>=2.5",
"pydantic-settings>=2.1",
"typer>=0.9",
"rich>=13.0",
"pyyaml>=6.0",
"litellm>=1.0",
"fastapi>=0.110",
"uvicorn>=0.27",
"jinja2>=3.1",
"python-dateutil>=2.8",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=4.1",
"pytest-asyncio>=0.23",
"ruff>=0.3",
"mypy>=1.8",
"pre-commit>=3.6",
"types-PyYAML>=6.0",
]
[project.scripts]
accounti = "accounti.cli:app"
[project.urls]
Homepage = "https://github.com/DEIN-USER/accounti"
Documentation = "https://github.com/DEIN-USER/accounti/tree/main/docs"
Repository = "https://github.com/DEIN-USER/accounti"
Issues = "https://github.com/DEIN-USER/accounti/issues"
[tool.hatch.build.targets.wheel]
packages = ["src/accounti"]
[tool.ruff]
target-version = "py311"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP", "B", "SIM", "T20"]
# UP042: (str, enum.Enum) bewusst beibehalten — StrEnum ändert das
# str()-Verhalten der Member und damit Text-/CSV-Ausgaben.
ignore = ["UP042"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"