-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 824 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name="modelgym",
version='0.1.5',
description='predictive model optimization toolbox.',
long_description=open('README.rst').read(),
url='https://github.com/yandexdataschool/modelgym/',
license='BSD',
author='The modelgym contributors',
packages=["modelgym", "modelgym.utils", "modelgym.trainers",
"modelgym.trackers", "modelgym.models"],
install_requires=["numpy", "scipy", "scikit-learn>=0.18", "matplotlib",
"pandas", "seaborn", "networkx==1.11", "hyperopt==0.1",
"pymongo==3.4.0", "pyyaml==3.12", "scikit-optimize==0.5",
"catboost==0.5", "lightgbm==2.2.1", "xgboost==0.80"]
)