Changed zipline -> catalyst import paths

* Updated cython build scripts
 * Updated setup.py to to install catalyst package
 * Updated momentum example to use catalyst package
 * catalyst executable now supports loading pipelines from multiple bundles
This commit is contained in:
Conner Fromknecht
2017-06-19 14:43:10 -07:00
parent be2fe35583
commit fce97176d6
244 changed files with 1101 additions and 1121 deletions
+2 -2
View File
@@ -3,7 +3,7 @@
#
# generate configuration, cert, and password if this is the first run
#
if [ ! -f /var/tmp/zipline_init ] ; then
if [ ! -f /var/tmp/catalyst_init ] ; then
jupyter notebook --generate-config
if [ ! -f ${SSL_CERT_PEM} ] ; then
openssl req -x509 -nodes -days 365 -newkey rsa:2048 \
@@ -11,7 +11,7 @@ if [ ! -f /var/tmp/zipline_init ] ; then
-keyout ${SSL_CERT_KEY} -out ${SSL_CERT_PEM}
fi
echo "c.NotebookApp.password = ${PW_HASH}" >> ${CONFIG_PATH}
touch /var/tmp/zipline_init
touch /var/tmp/catalyst_init
fi
jupyter notebook -y --no-browser --notebook-dir=${PROJECT_DIR} \