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
+8
View File
@@ -0,0 +1,8 @@
class classproperty(object):
"""Class property
"""
def __init__(self, fget):
self.fget = fget
def __get__(self, instance, owner):
return self.fget(owner)