-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.41 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
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ear2finger"
version = "1.0.1"
description = "YouTube subtitle dictation practice — FastAPI backend and bundled React UI"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Stephen Yin" }]
keywords = ["dictation", "youtube", "esl", "fastapi", "education"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: FastAPI",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Education",
]
dependencies = [
"fastapi==0.109.0",
"uvicorn[standard]==0.27.0",
"pydantic==2.5.3",
"python-multipart==0.0.6",
"yt-dlp==2026.2.4",
"sqlalchemy==2.0.25",
"aiosqlite==0.19.0",
"passlib[bcrypt]==1.7.4",
"python-jose[cryptography]==3.3.0",
]
[project.urls]
Homepage = "https://github.com/stephenyin/Ear2Finger"
Repository = "https://github.com/stephenyin/Ear2Finger"
[project.scripts]
ear2finger = "ear2finger.cli:main"
[project.optional-dependencies]
dev = ["build>=1.0.0", "twine>=5.0.0"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
ear2finger = ["web/**/*"]