forked from quantopian/alphalens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (51 loc) · 1.41 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
from setuptools import setup
import sys
long_description = ''
if 'upload' in sys.argv:
with open('README.rst') as f:
long_description = f.read()
install_reqs = [
'funcsigs>=0.4',
'matplotlib>=1.4.0',
'mock>=1.1.2',
'numpy>=1.9.1',
'pandas>=0.16.1',
'pyparsing>=2.0.3',
'python-dateutil>=2.4.2',
'pytz>=2014.10',
'scipy>=0.14.0',
'seaborn>=0.6.0',
'statsmodels>=0.6.1'
]
test_reqs = [
"nose>=1.3.7",
"nose_parameterized>=0.5.0"
]
if __name__ == "__main__":
setup(
name='alphalens',
version='0.0.0',
description='Factor analysis tools',
author='Quantopian Inc.',
author_email='[email protected]',
packages=[
'alphalens',
'alphalens.examples',
'alphalens.tests',
],
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python',
'Topic :: Utilities',
],
url='https://github.com/quantopian/alphalens',
install_requires=install_reqs,
test_requires=test_reqs
)