-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 841 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 841 Bytes
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
[project]
name = "api-balance-hub"
version = "0.1.0"
description = "Collect API balances/usage from multiple providers for local dashboard monitoring"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [{name = "suhongyi"}]
dependencies = [
"typer>=0.12.3",
"pydantic>=2.7.0",
"pydantic-settings>=2.2.1",
"httpx>=0.27.0",
"PyYAML>=6.0.1",
"python-dotenv>=1.0.1",
"tenacity>=8.3.0",
"playwright>=1.42.0",
"rich>=13.7.1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2.0",
"respx>=0.21.1",
]
[project.scripts]
balance-hub = "api_balance_hub.cli:app"
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
pythonpath = ["src"]
[tool.hatch.build.targets.wheel]
packages = ["src/api_balance_hub"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"