-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.29 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (51 loc) · 1.29 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
56
57
58
59
60
[project]
name = "lingua-loop"
version = "0.1.4"
authors = [
{name="Jared Frazier", email="cscidev001@gmail.com"}
]
description = "A web application to train your listening skills by transcribing real speech from YouTube videos."
readme = "README.md"
license = "MIT"
license-files = [ "LICENSE" ]
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"aiosqlite>=0.22.1",
"fastapi[standard]>=0.135.1",
"sqlalchemy>=2.0.48",
"youtube-transcript-api>=1.2.4",
]
[project.scripts]
lingua-loop = "lingua_loop.scripts.run:run"
[project.urls]
Homepage = "https://github.com/jfdev001/lingua-loop"
# https://github.com/astral-sh/uv/issues/9271#issuecomment-2488635515
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
lingua_loop = ["templates/*", "static/*"]
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.isort]
profile = "black"
[dependency-groups]
dev = [
"build>=1.4.2",
"prek>=0.3.8",
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-mock>=3.15.1",
"pytest-skip-slow>=0.0.5",
"twine>=6.2.0",
]
docs = [
"sphinx>=8.2.1",
"sphinx-rtd-theme>=3.0.2",
]