Skip to content
Snippets Groups Projects
Commit b19aae1a authored by grcgrc's avatar grcgrc
Browse files

pycryptodome & readme updates

pycrypto has been depreciated & replaced with pycryptodome.
parent 617959f2
Branches
Tags
No related merge requests found
Python Library for BitShares
========================
# Python Library for BitShares
*placeholder*
---
## Documentation
Visit the [pybitshares website](http://docs.pybitshares.com/en/latest/) for in depth documentation on this Python library.
## Installation
### Install with pip:
```
$ sudo apt-get install libffi-dev libssl-dev python-dev python-dev3
$ pip3 install bitshares
```
### Manual installation:
```
$ git clone https://github.com/xeroc/python-bitshares/
$ cd python-bitshares
$ python3 setup.py install --user
```
### Upgrade
```
$ pip3 install --user --upgrade
```
\ No newline at end of file
......@@ -4,7 +4,7 @@ from binascii import hexlify, unhexlify
try:
from Crypto.Cipher import AES
except ImportError:
raise ImportError("Missing dependency: pycrypto")
raise ImportError("Missing dependency: pycryptodome")
from .account import PrivateKey, PublicKey
import struct
......
graphenelib
bitshares
autobahn>=0.14
pycrypto==2.6.1
appdirs==1.4.0
pycryptodome==3.4.6
appdirs==1.4.0
\ No newline at end of file
graphenelib
pycrypto==2.6.1
pycryptodome==3.4.6
scrypt==0.7.1
Events==0.2.2
pyyaml
pytest
coverage
coverage
\ No newline at end of file
......@@ -45,7 +45,7 @@ setup(
"appdirs",
"Events",
"scrypt",
"pycrypto", # for AES, installed through graphenelib already
"pycryptodome", # for AES, installed through graphenelib already
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment