Skip to content

Commit

Permalink
Updated README and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ilcardella committed Jan 25, 2020
1 parent a90f568 commit a6c6750
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ View `Pipfile` or `setup.py` for the full list of python dependencies.

## Install

First install python 3 and pipenv
First install python 3
```
sudo apt-get update
sudo apt-get install python3 python3-pip
sudo apt-get install python3
```

The UI is based on Python GTK+ 3 so follow the instructions provided [here](https://pygobject.readthedocs.io/en/latest/getting_started.html) to install the required packages.
Expand Down Expand Up @@ -88,8 +88,10 @@ sudo pip3 uninstall TradingMate
## Development

The `Pipfile` helps you to setup a development virtual environmnet installing the required dependencies.
Install `pipenv`
Install `pip` and `pipenv`
```
sudo apt-get update
sudo apt-get install python3-pip
sudo -H pip3 install -U pipenv
```

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
scripts=["src/TradingMate.py"],
entry_points={"console_scripts": ["trading_mate = TradingMate:main"]},
install_requires=["alpha-vantage==2.1.3", "pygtail==0.11.1"],
package_data={"config": ["*.json"], "data": ["*.json"], "src/UI/assets": ["*.png"]},
package_data={"config": ["*.json"], "data": ["*.json"], "src/UI/assets/gtk": ["*.glade"]},
data_files=[
(os.path.join(os.sep, "opt", "TradingMate", "config"), ["config/config.json"]),
(os.path.join(os.sep, "opt", "TradingMate", "data"), ["data/trading_log.json"]),
Expand Down

0 comments on commit a6c6750

Please sign in to comment.