Skip to content

Commit

Permalink
Removing PyZMQ and GNURadio from the dependencies list. closes #24
Browse files Browse the repository at this point in the history
  • Loading branch information
mgm8 committed May 18, 2024
1 parent 5d8ca9b commit 885eb14
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,16 @@ Until now, this program supports the satellites below:
* python (>= 3)
* gi
* scipy
* pyzmq
* matplotlib
* gnuradio
* pyngham

### Installation on Ubuntu

```sudo apt install python3 python3-gi python3-scipy python3-zmq python3-matplotlib gnuradio```
```sudo apt install python3 python3-gi python3-scipy python3-matplotlib```

### Installation on Fedora

```sudo dnf install python3 python3-gobject python3-scipy python3-zmq python3-matplotlib gnuradio```
```sudo dnf install python3 python3-gobject python3-scipy python3-matplotlib```

## Building and Installing

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[bdist_rpm]
packager = Gabriel Mariano Marcelino <gabriel.mm8@gmail.com>
force_arch = x86_64
requires = python3, python3-gobject, python3-scipy, python3-zmq, python3-matplotlib, gnuradio
requires = python3, python3-gobject, python3-scipy, python3-matplotlib
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# setup.py
#
# Copyright (C) 2021, Universidade Federal de Santa Catarina
# Copyright The SpaceLab-Decoder Contributors.
#
# This file is part of SpaceLab-Decoder.
#
Expand Down Expand Up @@ -66,7 +66,7 @@
],
download_url = "https://github.com/spacelab-ufsc/spacelab-decoder/releases",
packages = setuptools.find_packages(),
install_requires = ['gi','scipy','pyzmq','matplotlib','pyngham'],
install_requires = ['gi','scipy','matplotlib','pyngham'],
entry_points = {
'gui_scripts': [
'spacelab-decoder = spacelab_decoder.__main__:main'
Expand Down

0 comments on commit 885eb14

Please sign in to comment.