fixed minor typing errors
This commit is contained in:
parent
f667041679
commit
9a6b64c12b
@ -607,12 +607,6 @@ def lambda_context():
|
||||
session = boto3.session.Session()
|
||||
|
||||
client = session.client('sns')
|
||||
|
||||
os.environ["topic"] = "UnitTestTopic"
|
||||
os.environ["trackingTable"] = "UnitTrackingTable"
|
||||
os.environ["acquisitionTable"] = "UnitAcquisitionTable"
|
||||
os.environ["resultTable"] = "UnitResultTable"
|
||||
|
||||
dynamodb = boto3.resource('dynamodb')
|
||||
|
||||
# here we will define required tables later
|
||||
|
@ -24,7 +24,7 @@ import plotly.graph_objs as go
|
||||
from freqtrade.arguments import Arguments
|
||||
from freqtrade.configuration import Configuration
|
||||
from freqtrade.analyze import Analyze
|
||||
from freqtradeimport constants
|
||||
from freqtrade import constants
|
||||
|
||||
|
||||
import freqtrade.optimize as optimize
|
||||
|
5
setup.py
5
setup.py
@ -8,7 +8,6 @@ if version_info.major == 3 and version_info.minor < 6 or \
|
||||
|
||||
from freqtrade import __version__
|
||||
|
||||
|
||||
setup(name='freqtrade',
|
||||
version=__version__,
|
||||
description='Simple High Frequency Trading Bot for crypto currencies',
|
||||
@ -19,7 +18,7 @@ setup(name='freqtrade',
|
||||
packages=['freqtrade'],
|
||||
scripts=['bin/freqtrade'],
|
||||
setup_requires=['pytest-runner'],
|
||||
tests_require=['pytest', 'pytest-mock', 'pytest-cov'],
|
||||
tests_require=['pytest', 'pytest-mock', 'pytest-cov', 'moto'],
|
||||
install_requires=[
|
||||
'ccxt',
|
||||
'SQLAlchemy',
|
||||
@ -36,6 +35,8 @@ setup(name='freqtrade',
|
||||
'tabulate',
|
||||
'cachetools',
|
||||
'coinmarketcap',
|
||||
'boto3'
|
||||
|
||||
],
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
|
Loading…
Reference in New Issue
Block a user