-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.02 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 1.02 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "macrofactor-scraper"
version = "0.1.0"
description = "Local FastAPI backend for Apple Health data exported by Health Auto Export"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.0",
"garminconnect>=0.3.3",
"httpx>=0.27.0",
"pydantic>=2.8.0",
"pydantic-settings>=2.4.0",
"python-multipart>=0.0.9",
"python-dotenv>=1.0.1",
"uvicorn[standard]>=0.30.0",
"argon2-cffi>=23.1.0",
"Pillow>=10.0.0",
"anthropic>=0.40.0",
"pywebpush>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"respx>=0.21.1",
]
[project.scripts]
macrofactor-api = "macrofactor_scraper.main:run"
[tool.hatch.build.targets.wheel]
packages = ["src/macrofactor_scraper"]
[tool.hatch.build.targets.wheel.force-include]
"src/macrofactor_scraper/static" = "macrofactor_scraper/static"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]