forked from esvhd/pypbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 935 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
25
26
27
from setuptools import setup
setup(
name='pypbo',
version='0.13',
packages=['pypbo', 'pypbo.perf'],
url='https://github.com/nocluebutalotofit/pypbo',
license='',
author='esvhd, binrush, nocluebutalotofit',
author_email='',
description='Python implementation of Probability of Backtest Overfitting[1].'
'[1] Bailey, David H. and Borwein, Jonathan M. and Lopez de Prado,'
' Marcos and Zhu, Qiji Jim, The Probability of Backtest Overfitting'
' (February 27, 2015). Journal of Computational Finance (Risk Journals), '
'2015, Forthcoming. Available at SSRN: http://ssrn.com/abstract=2326253 or '
'http://dx.doi.org/10.2139/ssrn.2326253',
install_requires=[
'seaborn',
'pandas',
'numpy',
'scipy',
'statsmodels>=0.8',
'matplotlib',
'joblib',
'psutil',
],
)