-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.06 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
from setuptools import setup
requirements = ['Click>=6.0',
'numpy',
'pandas>=1.1.4',
'seaborn',
'scipy',
# 'scikit-learn<=0.20.3',
'scikit-learn',
'jupyterlab',
'scikit-optimize',
'xgboost',
'keras',
'tensorflow',
'python-pptx',
'nbparameterise @ git+https://github.com/takluyver/nbparameterise.git',
]
setup(
name='mltoolbox',
version='',
# packages=['external.facets_old.facets_overview.python', 'external.parametric_tsne.parametric_tSNE', 'mltoolbox',
# 'mltoolbox.misc'],
packages=['mltoolbox',
'mltoolbox.misc',
'mltoolbox.external',
'mltoolbox.external.parametric_tsne.parametric_tSNE',
'mltoolbox.external.facets',
],
url='',
license='',
author='Cristian Donos',
author_email='',
description='',
install_requires = requirements,
)