-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
93 lines (83 loc) · 2.19 KB
/
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
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
84
85
86
87
88
89
90
91
92
[project]
name = "Bagels"
version = "0.1.11"
authors = [
{ name = "Jax", email = "[email protected]" }
]
description = "Powerful terminal expense tracker."
readme = "README.md"
requires-python = ">=3.13"
license = { file = "LICENSE" }
keywords = ["python", "cli", "expense-tracker", "python3", "UV", "ssh", "textual", "terminal", "tui"]
dependencies = [
"aiohappyeyeballs==2.4.3",
"aiohttp-jinja2==1.6",
"aiohttp==3.10.10",
"aiosignal==1.3.1",
"annotated-types==0.7.0",
"attrs==24.2.0",
"blinker==1.8.2",
"click-default-group>=1.2.4",
"click==8.1.7",
"freezegun>=1.5.1",
"frozenlist==1.5.0",
"idna==3.10",
"itsdangerous==2.2.0",
"linkify-it-py==2.0.3",
"markdown-it-py==3.0.0",
"markupsafe==3.0.2",
"mdit-py-plugins==0.4.2",
"mdurl==0.1.2",
"msgpack==1.1.0",
"multidict==6.1.0",
"numpy>=2.1.3",
"platformdirs==4.3.6",
"propcache==0.2.0",
"pydantic-core==2.23.4",
"pydantic-settings-yaml>=0.2.0",
"pydantic-settings>=2.6.1",
"pydantic==2.9.2",
"pygments==2.18.0",
"pytest-textual-snapshot>=1.0.0",
"pyyaml==6.0.2",
"rich==13.9.3",
"sqlalchemy==2.0.36",
"textual-dev==1.6.1",
"textual>=0.86.1",
"tomli>=2.0.2",
"typing-extensions==4.12.2",
"uc-micro-py==1.0.3",
"werkzeug==3.0.6",
"xdg-base-dirs>=6.0.2",
"yarl==1.16.0",
]
[project.urls]
Homepage = "https://github.com/EnhancedJax/Bagels"
Repository = "https://github.com/EnhancedJax/Bagels"
Issues = "https://github.com/EnhancedJax/Bagels/issues"
Documentation = "https://github.com/EnhancedJax/Bagels/blob/main/README.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
bagels = "bagels.__main__:cli"
[tool.uv]
dev-dependencies = [
"textual-dev>=1.6.1",
"pytest>=8.3.1",
"jinja2>=3.1.4",
"syrupy>=4.6.1",
"pytest-xdist>=3.6.1",
"pytest-cov>=5.0.0",
"pytest-textual-snapshot>=1.0.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/bagels"]
[tool.pytest.ini_options]
markers = [
"serial", # used to indicate tests must not run in parallel
]
[tool.coverage.run]
relative_files = true