-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
36 lines (32 loc) · 1.01 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "manaless"
version = "0.1.0"
description = "Try-before-you-buy funnel for paper MTG Commander: browse curated decklists, substitute with live win-condition + bracket feedback, export to XMage, then (rarely) buy."
requires-python = ">=3.12"
dependencies = [
"httpx>=0.27",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
# The web tests import fastapi.testclient, so the dev extra must pull the web
# stack in — otherwise `pip install -e ".[dev]" && pytest` fails at collection.
"manaless[web]",
]
# Build-step-4 substitution builder. Kept out of the core deps so the pipeline
# stays importable headless (CLAUDE.md §2). HTMX is vendored in web/static/.
web = [
"fastapi>=0.110",
"uvicorn[standard]>=0.29",
"jinja2>=3.1",
"python-multipart>=0.0.9",
]
[tool.hatch.build.targets.wheel]
packages = ["src/manaless"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-q"