-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 817 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (40 loc) · 817 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
41
42
43
44
45
46
47
[project]
name = "flashgen"
version = "0.1.0"
description = "Japanese Anki flashcard generator with CLI and MCP/server front doors."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"fastapi",
"google-genai>=1.62.0",
"httpx",
"json-repair>=0.10",
"mcp>=1.27.1",
"openai>=1.0.0",
"pydantic",
"requests>=2.28.0",
"uvicorn",
]
[project.optional-dependencies]
dev = [
"pytest",
]
[project.scripts]
# CLI: pbpaste | flashgen (reads formatted JSON from stdin)
flashgen = "flashgen:main"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["flashgen"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = [
".",
"src",
]
[dependency-groups]
dev = [
"pytest-cov>=7.1.0",
]