Mercurial > code > home > repos > light9
annotate pyproject.toml @ 2120:0745923e912f
2022 music fixes
author | drewp@bigasterisk.com |
---|---|
date | Thu, 02 Jun 2022 23:21:25 -0700 |
parents | 13d1fc32125b |
children | 83f9fbc0a003 |
rev | line source |
---|---|
2031 | 1 [project] |
2 name = "" | |
3 version = "" | |
4 description = "" | |
5 authors = [{ name = "Drew Perttula", email = "drewp@bigasterisk.com" }] | |
6 license-expression = "MIT" | |
7 dependencies = [ | |
8 "autobahn", | |
9 "coloredlogs", | |
10 "colormath", | |
11 "cyclone", | |
12 "genshi", | |
13 "ipython", | |
14 "klein", | |
15 "louie", | |
16 "moviepy", | |
17 "noise", | |
18 "pillow", | |
19 "pyftdi", | |
20 "pyjade", | |
21 "pyserial", | |
22 "python-dateutil", | |
23 "pyusb", | |
24 "rdflib", | |
25 "requests", | |
26 "rx", | |
2110 | 27 # "scipy", |
2031 | 28 "service_identity", |
29 "statprof", | |
30 "toposort", | |
31 "treq", | |
32 "twisted", | |
33 "txzmq", | |
34 "udmx-pyusb", | |
35 "webcolors>=1.11.1", | |
36 "watchdog>=2.1.7", | |
37 "standardservice @ https://projects.bigasterisk.com/standardservice/standardservice-0.6.0.tar.gz", | |
38 "cycloneerr @ https://projects.bigasterisk.com/cycloneerr/cycloneerr-0.4.0.tar.gz", | |
39 "web.py>=0.62", | |
2067
508001655c2f
rdfdb needs websockets lib choice, but doesn't list it as a dep since i meant it to be server-agnostic
drewp@bigasterisk.com
parents:
2063
diff
changeset
|
40 "uvicorn[standard]>=0.17.6", |
2035
f9faa2ec824f
WIP collector using starlette and vite
drewp@bigasterisk.com
parents:
2031
diff
changeset
|
41 "starlette[standard]>=0.19.0", |
f9faa2ec824f
WIP collector using starlette and vite
drewp@bigasterisk.com
parents:
2031
diff
changeset
|
42 "prometheus-client>=0.14.1", |
f9faa2ec824f
WIP collector using starlette and vite
drewp@bigasterisk.com
parents:
2031
diff
changeset
|
43 "starlette-exporter>=0.12.0", |
2038
5154f5a23e85
reworking initial setup; get bin/asco running
drewp@bigasterisk.com
parents:
2035
diff
changeset
|
44 "PyGObject>=3.42.1", |
2072 | 45 "aiohttp>=3.8.1", |
2092
b39aafe12319
use rdfdb public version and add pydeps
drewp@bigasterisk.com
parents:
2072
diff
changeset
|
46 "rdfdb @ https://projects.bigasterisk.com/rdfdb/rdfdb-0.23.0.tar.gz", |
2100
f1df317f7c4c
effectSequencer mostly ported to asyncio
drewp@bigasterisk.com
parents:
2092
diff
changeset
|
47 "sse-starlette>=0.10.3", |
2031 | 48 ] |
49 requires-python = ">=3.9" | |
50 | |
51 [project.urls] | |
52 Homepage = "" | |
53 | |
2092
b39aafe12319
use rdfdb public version and add pydeps
drewp@bigasterisk.com
parents:
2072
diff
changeset
|
54 [project.optional-dependencies] |
2031 | 55 [tool.pdm] |
56 | |
57 [tool.pdm.dev-dependencies] | |
58 dev = [ | |
59 "coverage", | |
60 "flake8", | |
61 "freezegun", | |
62 "hunter", | |
63 "ipdb", | |
64 "mock", | |
65 "mypy", | |
66 "nose-watcher", | |
67 "nose", | |
68 "pytest-watcher", | |
69 "pytest", | |
70 "yapf", | |
2092
b39aafe12319
use rdfdb public version and add pydeps
drewp@bigasterisk.com
parents:
2072
diff
changeset
|
71 "pydeps>=1.10.18", |
2031 | 72 ] |
73 | |
74 [[tool.pdm.source]] | |
75 name = "pypi" | |
76 url = "https://pypi.org/simple" | |
77 verify_ssl = true | |
78 | |
79 [build-system] | |
80 requires = ["pdm-pep517"] | |
81 build-backend = "pdm.pep517.api" |