diff --git a/README.md b/README.md index b3a625c..ab8897a 100644 --- a/README.md +++ b/README.md @@ -82,20 +82,6 @@ Install the debian packages created from the libdxwifi instructions sudo dpkg -i *.deb ``` -## Build oresat_configs -Clone Repository -```bash -cd /home/debian/src && \ -git clone https://github.com/oresat/oresat-configs -``` -Install requirements -```bash -cd oresat-configs && \ -sudo pip install -r requirements.txt -sudo ./build_and_install.sh -``` - - ## Build and install Oresat DxWiFi Software (OLAF app) Package Install requirements ```bash diff --git a/oresat_dxwifi/__main__.py b/oresat_dxwifi/__main__.py index 4704e8d..631c6a7 100644 --- a/oresat_dxwifi/__main__.py +++ b/oresat_dxwifi/__main__.py @@ -3,7 +3,6 @@ import os from olaf import app, olaf_run, olaf_setup, render_olaf_template, rest_api -from oresat_configs import NodeId from . import __version__ from .resources.temperature import TemperatureResource diff --git a/pyproject.toml b/pyproject.toml index 13e1bb0..2b075ec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,6 @@ classifiers = [ "Topic :: Software Development :: Embedded Systems", ] dependencies = [ - "oresat-configs", "oresat-olaf>=3.0.0", "v4l2py==2.1.0", ] @@ -59,7 +58,7 @@ ignore = "C0103,E203,W0613,R0902,R901,R0913,R0914,W1514,W0707,C901" max_line_length = 100 [[tool.mypy.overrides]] -module = "canopen,olaf,oresat_configs" +module = "canopen,olaf" ignore_missing_imports = true [tool.isort] diff --git a/requirements.txt b/requirements.txt index 7f296a1..d81583f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,7 @@ black build isort -oresat-configs -pyyaml[all] +pyyaml v4l2py==2.1.0 oresat-olaf>=3.0.0 pylama[all]