Skip to content

Commit

Permalink
Add missing dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
U039b committed Apr 23, 2018
1 parent cc85a87 commit 685bab0
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,30 @@ Clone this repository:
git clone https://github.com/Exodus-Privacy/exodus-core.git
cd exodus-core
```
Install `dexdump`:
```
sudo apt-get install dexdump
```
Create a `gplaycli` configuration file:
```
nano ~/.config/gplaycli/gplaycli.conf
```
containing
```
[Credentials]
gmail_address=
gmail_password=
#keyring_service=gplaycli
token=True
token_url=https://matlink.fr/token/email/gsfid
[Cache]
token=~/.cache/gplaycli/token
[Locale]
locale=en_US
timezone=CEST
```
Create Python `virtualenv`:
```
virtualenv venv -p python3
Expand All @@ -27,5 +51,5 @@ python -m unittest discover -s exodus_core -p "test_*.py"
## Include it to your project
Add the following line in your `requirements.txt`:
```
https://github.com/Exodus-Privacy/exodus-core/releases/download/v1.0.4/exodus_core-1.0.4.tar.gz
https://github.com/Exodus-Privacy/exodus-core/releases/download/v1.0.14/exodus_core-1.0.14.tar.gz
```
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,13 @@ def is_exe(fpath):
'gplaycli==3.21',
'protobuf==3.5.2.post1',
"jellyfish==0.5.6",
"beautifulsoup4==4.6.0"
'cryptography==2.2.2',
"beautifulsoup4==4.6.0",
'androguard==3.1.0'
]

setup(name = 'exodus_core',
version = '1.0.13',
version = '1.0.14',
description = 'Core functionality of εxodus',
author = 'Exodus Privacy',
author_email = '[email protected]',
Expand Down

0 comments on commit 685bab0

Please sign in to comment.