-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (52 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
56 lines (52 loc) · 1.42 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
[project]
name = "portfolio"
version = "0.1.0"
description = "Personal portfolio website for Kan Kawabata"
readme = "CONTEXT.md"
requires-python = ">=3.13"
dependencies = [
"django>=5.2,<6",
"pillow>=10",
"python-dotenv>=1",
"mistune>=3",
"pygments>=2.15",
"gunicorn>=23",
"gevent>=24",
"whitenoise>=6.5",
"channels[daphne]>=4",
"aiortc>=1.5",
"av>=10",
"google-api-python-client>=2.97",
"google-auth-oauthlib>=1",
"chat-downloader>=0.2.7",
"pandas>=2",
"boto3>=1.28",
"transformers>=4.41",
"torch>=2.3",
"accelerate>=0.31",
"vadersentiment>=3.3",
"yt-dlp>=2024",
"pydub>=0.25",
"audioop-lts>=0.2; python_version >= '3.13'",
"magic-eye-util",
"morse-code-util",
"opencv-cam-distance-measurer",
"whistle-detector",
]
[dependency-groups]
dev = [
"django-debug-toolbar>=4.2",
]
[tool.uv.sources]
magic-eye-util = { git = "https://github.com/kkawabat/MagicEyeUtil.git" }
morse-code-util = { git = "https://github.com/kkawabat/Morse-Code-Util.git" }
opencv-cam-distance-measurer = { git = "https://github.com/kkawabat/opencv_cam_distance_measurer.git" }
whistle-detector = { git = "https://github.com/kkawabat/WhistleDetector.git" }
torch = { index = "pytorch-cpu" }
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"