update python-bittrex to 0.2.0
This commit is contained in:
parent
0f1a36b8e9
commit
fafbb0abfe
@ -30,7 +30,11 @@ class Bittrex(Exchange):
|
||||
global _API, _EXCHANGE_CONF
|
||||
|
||||
_EXCHANGE_CONF.update(config)
|
||||
_API = _Bittrex(api_key=_EXCHANGE_CONF['key'], api_secret=_EXCHANGE_CONF['secret'])
|
||||
_API = _Bittrex(
|
||||
api_key=_EXCHANGE_CONF['key'],
|
||||
api_secret=_EXCHANGE_CONF['secret'],
|
||||
calls_per_second=5,
|
||||
)
|
||||
|
||||
@property
|
||||
def fee(self) -> float:
|
||||
|
@ -1,4 +1,4 @@
|
||||
-e git+https://github.com/ericsomdahl/python-bittrex.git@d7033d0#egg=python-bittrex
|
||||
-e git+https://github.com/ericsomdahl/python-bittrex.git@0.2.0#egg=python-bittrex
|
||||
SQLAlchemy==1.1.14
|
||||
python-telegram-bot==8.1.1
|
||||
arrow==0.10.0
|
||||
|
4
setup.py
4
setup.py
@ -21,7 +21,7 @@ setup(name='freqtrade',
|
||||
setup_requires=['pytest-runner'],
|
||||
tests_require=['pytest', 'pytest-mock', 'pytest-cov'],
|
||||
install_requires=[
|
||||
'python-bittrex==0.1.3',
|
||||
'python-bittrex==0.2.0',
|
||||
'SQLAlchemy==1.1.13',
|
||||
'python-telegram-bot==8.1.1',
|
||||
'arrow==0.10.0',
|
||||
@ -36,7 +36,7 @@ setup(name='freqtrade',
|
||||
'tabulate==0.8.1',
|
||||
],
|
||||
dependency_links=[
|
||||
"git+https://github.com/ericsomdahl/python-bittrex.git@d7033d0#egg=python-bittrex-0.1.3"
|
||||
"git+https://github.com/ericsomdahl/python-bittrex.git@0.2.0#egg=python-bittrex-0.2.0"
|
||||
],
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
|
Loading…
Reference in New Issue
Block a user