fixed minor typing errors

This commit is contained in:
Gert Wohlgemuth 2018-05-09 09:31:14 -07:00
parent f667041679
commit 9a6b64c12b
4 changed files with 4 additions and 9 deletions

View File

@ -607,12 +607,6 @@ def lambda_context():
session = boto3.session.Session() session = boto3.session.Session()
client = session.client('sns') client = session.client('sns')
os.environ["topic"] = "UnitTestTopic"
os.environ["trackingTable"] = "UnitTrackingTable"
os.environ["acquisitionTable"] = "UnitAcquisitionTable"
os.environ["resultTable"] = "UnitResultTable"
dynamodb = boto3.resource('dynamodb') dynamodb = boto3.resource('dynamodb')
# here we will define required tables later # here we will define required tables later

View File

@ -8,7 +8,6 @@ if version_info.major == 3 and version_info.minor < 6 or \
from freqtrade import __version__ from freqtrade import __version__
setup(name='freqtrade', setup(name='freqtrade',
version=__version__, version=__version__,
description='Simple High Frequency Trading Bot for crypto currencies', description='Simple High Frequency Trading Bot for crypto currencies',
@ -19,7 +18,7 @@ setup(name='freqtrade',
packages=['freqtrade'], packages=['freqtrade'],
scripts=['bin/freqtrade'], scripts=['bin/freqtrade'],
setup_requires=['pytest-runner'], setup_requires=['pytest-runner'],
tests_require=['pytest', 'pytest-mock', 'pytest-cov'], tests_require=['pytest', 'pytest-mock', 'pytest-cov', 'moto'],
install_requires=[ install_requires=[
'ccxt', 'ccxt',
'SQLAlchemy', 'SQLAlchemy',
@ -36,6 +35,8 @@ setup(name='freqtrade',
'tabulate', 'tabulate',
'cachetools', 'cachetools',
'coinmarketcap', 'coinmarketcap',
'boto3'
], ],
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,