Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
pin base58 >= 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Buddy Deck committed Jun 30, 2019
1 parent 4a2f038 commit 5286135
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion eospy/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.0'
__version__ = '2.0.1'
54 changes: 27 additions & 27 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,30 @@
with open(os.path.join(here, 'eospy', '__version__.py'), 'r') as f:
exec(f.read(), about)

setup(name='libeospy',
version=os.getenv('BUILD_VERSION', about['__version__']),
description='Python library for the eos.io REST API',
long_description=long_description,
long_description_content_type='text/markdown',
author='deck',
author_email='deck@eosnewyork.io',
url='https://github.com/eosnewyork/eospy',
packages=find_packages(),
test_suite = 'nose.collector',
install_requires=[
'requests',
'base58',
'ecdsa',
'colander',
'pytz',
'six',
'pyyaml',
],
entry_points = {
'console_scripts' :[
'validate_chain = eospy.command_line:validate_chain',
'pycleos = eospy.command_line:cleos',
'pytesteos = eospy.command_line:testeos',
],
}
)
setup(
name='libeospy',
version=os.getenv('BUILD_VERSION', about['__version__']),
description='Python library for the eos.io REST API',
long_description=long_description,
long_description_content_type='text/markdown',
author='deck',
author_email='deck@eosnewyork.io',
url='https://github.com/eosnewyork/eospy',
packages=find_packages(),
test_suite='nose.collector',
install_requires=[
'requests',
'base58>=1.0.3',
'ecdsa',
'colander',
'pytz',
'six',
'pyyaml',
],
entry_points={
'console_scripts': [
'validate_chain = eospy.command_line:validate_chain',
'pycleos = eospy.command_line:cleos',
'pytesteos = eospy.command_line:testeos',
],
})

0 comments on commit 5286135

Please sign in to comment.