Mercurial > code > home > repos > video
annotate pyproject.toml @ 49:1bd17c2e5517 default tip
video.py must sign video urls for serve-files.js to serve them
author | drewp@bigasterisk.com |
---|---|
date | Fri, 06 Dec 2024 17:13:51 -0800 |
parents | 1fa90a903621 |
children |
rev | line source |
---|---|
3 | 1 [tool] |
2 | |
3 [tool.pdm] | |
4 | |
5 [project] | |
30 | 6 name = "video" |
7 version = "0.0.1" | |
3 | 8 description = "" |
9 authors = [{ name = "Drew Perttula", email = "drewp@bigasterisk.com" }] | |
10 dependencies = [ | |
11 "docopt", | |
30 | 12 "pymongo==4.8.0", |
13 "python-dateutil==2.9.0", | |
14 "prometheus-client>=0.20.0", | |
15 "starlette-exporter>=0.23.0", | |
16 "starlette>=0.38.2", | |
17 "uvicorn>=0.30.6", | |
3 | 18 "watchgod>=0.8.2", |
30 | 19 "sse-starlette>=2.1.3", |
20 "mongo-queue-service>=0.2.1", | |
21 "yt-dlp>=2024.8.6", | |
49
1bd17c2e5517
video.py must sign video urls for serve-files.js to serve them
drewp@bigasterisk.com
parents:
30
diff
changeset
|
22 "pycryptodome>=3.21.0", |
3 | 23 ] |
24 requires-python = ">=3.10" | |
25 license = { text = "MIT" } | |
26 | |
27 [build-system] | |
28 requires = ["pdm-pep517>=1.0.0"] | |
29 build-backend = "pdm.pep517.api" | |
30 | |
31 [[tool.pdm.source]] | |
32 url = "https://projects.bigasterisk.com/" | |
33 verify_ssl = true | |
27 | 34 name = "home" |