forked from usaa/vogel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 721 Bytes
/
Copy pathsetup.py
File metadata and controls
17 lines (16 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup
setup(name='vogel',
version='0.2.6',
author=['Robert Dohner', 'Michael Waldmeier', 'Chris Manhave'],
url='https://github.com/usaa/',
packages=['vogel', 'vogel.preprocessing', 'vogel.train', 'vogel.utils', 'vogel.utils.stats'],
description='Vogel is a ML project flow tool, with the primary objective of simplifying actuarial ML processes. It tracks and manages model development from data preparation to results analysis and visualization.',
install_requires =[
'scikit-learn>=0.20',
'statsmodels>=0.9.0',
'matplotlib>=2.0.2',
'pandas>=0.20.3',
'xgboost>=0.80',
'catboost>=0.9.1'
]
)