-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 759 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"""Setup file."""
from setuptools import setup
from setuptools import find_packages
setup(name='omesa',
version='0.4.1.alpha',
description='A framework for reproducible machine learning research',
author='Chris Emmery',
author_email='cmry@protonmail.com',
url='https://github.com/cmry/omesa',
license='GPLv3',
packages=find_packages(exclude=['tests']),
install_requires=['annoy>=1.8.0',
'blitzdb>=0.2.12',
'bottle>=0.12.9',
'colorlover>=0.2.1',
'lime>=0.1.1.7',
'plotly>=1.12.0',
'reach>=0.0.4',
'scikit-learn>=0.17'],
zip_safe=True)