forked from alpha-i/library-feature-generation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 768 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
from setuptools import find_packages
setup(
name='alphai_feature_generation',
version='2.0.2',
description='Alpha-I Feature Generation',
author='Fergus Simpson',
author_email='[email protected]',
packages=find_packages(exclude=['doc', 'tests*']),
install_requires=['pandas<0.22',
'scikit-learn',
'numpy',
'scipy',
'alphai_calendars>=0.0.1,<1.0.0',
'tables',
'pyts',
'future',
'python-dateutil',
],
dependency_links=[
'https://pypi.fury.io/zNzsk7gQsYY335HLzW9x/alpha-i/alphai_calendars/',
]
)