Changeset - 13d1fc32125b
[Not reviewed]
default
0 3 0
drewp@bigasterisk.com - 3 years ago 2022-06-02 18:50:28
drewp@bigasterisk.com
pkg deps tweaks for ubuntu 22.04
3 files changed with 7 insertions and 3 deletions:
0 comments (0 inline, 0 general)
.pdm.toml
Show inline comments
 
[python]
 
path = "/usr/bin/python3.9"
 
path = "/usr/bin/python3.10"
makefile
Show inline comments
 
### setup ###
 

	
 
packages:
 
	sudo aptitude install -y \
 
		audacity \
 
		coffeescript \
 
		curl \
 
		git \
 
		libblas-dev \
 
		libcairo2-dev \
 
		libffi-dev \
 
		libjpeg8-dev \
 
		liblapack-dev \
 
		libssl-dev \
 
		libzmq3-dev \
 
		mercurial \
 
		nginx-core \
 
		nginx-full \
 
		normalize-audio \
 
		npm \
 
		python3-cairo \
 
		python3-cairo-dev \
 
		python3-dev \
 
		python3-opencv \
 
		python3-pygame \
 
		python3-tk \
 
		tix \
 
		zlib1g-dev
 

	
 
gst_packages:
 
	sudo aptitude install -y \
 
		gir1.2-goocanvas-2.0 \
 
		gir1.2-gst-plugins-base-1.0 \
 
		gir1.2-gstreamer-1.0 \
 
		gstreamer1.0-plugins-good \
 
		gstreamer1.0-pulseaudio \
 
		gstreamer1.0-tools \
 
		libgirepository-1.0-1 \
 
		libgirepository1.0-dev \
 
		python3-gi \
 
		python3-gst-1.0
 

	
 
pnpm:
 
	# holding pnpm back because we don't have the latest nodejs: https://pnpm.io/installation#compatibility
 
	sudo npm install -g pnpm@6.32.12
 

	
pyproject.toml
Show inline comments
 
@@ -3,49 +3,49 @@ name = ""
 
version = ""
 
description = ""
 
authors = [{ name = "Drew Perttula", email = "drewp@bigasterisk.com" }]
 
license-expression = "MIT"
 
dependencies = [
 
    "autobahn",
 
    "coloredlogs",
 
    "colormath",
 
    "cyclone",
 
    "genshi",
 
    "ipython",
 
    "klein",
 
    "louie",
 
    "moviepy",
 
    "noise",
 
    "pillow",
 
    "pyftdi",
 
    "pyjade",
 
    "pyserial",
 
    "python-dateutil",
 
    "pyusb",
 
    "rdflib",
 
    "requests",
 
    "rx",
 
    "scipy",
 
#    "scipy",
 
    "service_identity",
 
    "statprof",
 
    "toposort",
 
    "treq",
 
    "twisted",
 
    "txzmq",
 
    "udmx-pyusb",
 
    "webcolors>=1.11.1",
 
    "watchdog>=2.1.7",
 
    "standardservice @ https://projects.bigasterisk.com/standardservice/standardservice-0.6.0.tar.gz",
 
    "cycloneerr @ https://projects.bigasterisk.com/cycloneerr/cycloneerr-0.4.0.tar.gz",
 
    "web.py>=0.62",
 
    "uvicorn[standard]>=0.17.6",
 
    "starlette[standard]>=0.19.0",
 
    "prometheus-client>=0.14.1",
 
    "starlette-exporter>=0.12.0",
 
    "PyGObject>=3.42.1",
 
    "aiohttp>=3.8.1",
 
    "rdfdb @ https://projects.bigasterisk.com/rdfdb/rdfdb-0.23.0.tar.gz",
 
    "sse-starlette>=0.10.3",
 
]
 
requires-python = ">=3.9"
 

	
 
[project.urls]
0 comments (0 inline, 0 general)