Mercurial > code > home > repos > video
annotate pyproject.toml @ 17:071943adf000
dnd a file or a url which we'll queue and fetch
author | drewp@bigasterisk.com |
---|---|
date | Sun, 16 Apr 2023 03:19:33 -0700 |
parents | 53d99454f394 |
children | 27a754f8e8f8 |
rev | line source |
---|---|
3 | 1 [tool] |
2 | |
3 [tool.pdm] | |
4 | |
5 [project] | |
6 name = "" | |
7 version = "" | |
8 description = "" | |
9 authors = [{ name = "Drew Perttula", email = "drewp@bigasterisk.com" }] | |
10 dependencies = [ | |
11 "cyclone", | |
12 "docopt", | |
13 "pymongo==3.10.1", | |
14 "python-dateutil==2.8.1", | |
15 "prometheus-client>=0.16.0", | |
16 "starlette-exporter>=0.15.1", | |
17 "starlette>=0.26.1", | |
18 "uvicorn>=0.21.1", | |
19 "watchgod>=0.8.2", | |
15 | 20 "sse-starlette>=1.3.3", |
17
071943adf000
dnd a file or a url which we'll queue and fetch
drewp@bigasterisk.com
parents:
15
diff
changeset
|
21 "mongo-queue-service>=0.1.8", |
3 | 22 ] |
23 requires-python = ">=3.10" | |
24 license = { text = "MIT" } | |
25 | |
26 [build-system] | |
27 requires = ["pdm-pep517>=1.0.0"] | |
28 build-backend = "pdm.pep517.api" | |
29 | |
30 [[tool.pdm.source]] | |
31 url = "https://projects.bigasterisk.com/" | |
32 verify_ssl = true | |
33 name = "home" |