-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch dependency from bitcoin => cryptos (#168)
* switch from bitcoin library to cryptos * update .gitignore to exclude VSCode files * remove unused imports * reformat batch imports * add __all__ to __init__.py * update version to 1.0.94
- Loading branch information
Showing
6 changed files
with
199 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,3 +48,6 @@ coverage.xml | |
*.log | ||
*.pot | ||
.idea/ | ||
|
||
# IDEs | ||
.vscode/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,15 +14,15 @@ | |
setup(name='blockcypher', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
version='1.0.93', | ||
version='1.0.94', | ||
description='BlockCypher Python Library', | ||
author='Michael Flaxman', | ||
author_email='[email protected]', | ||
url='https://github.com/blockcypher/blockcypher-python/', | ||
install_requires=[ | ||
'requests<3.0.0', | ||
'python-dateutil<3.0.0', | ||
'bitcoin==1.1.39', | ||
'cryptos<3.0.0' | ||
], | ||
packages=['blockcypher'], | ||
include_package_data=True, | ||
|