forked from predict-idlab/GENDIS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 968 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
28
29
30
#!/usr/bin/env python
from setuptools import setup
import numpy as np
from Cython.Build import cythonize
setup(name='GENDIS',
version='1.0.10',
description=' Contains an implementation (sklearn API) of the algorithm proposed in "GENDIS: GEnetic DIscovery of Shapelets" and code to reproduce all experiments.',
author='Gilles Vandewiele',
author_email='[email protected]',
url='https://github.com/IBCNServices/GENDIS',
packages=['gendis'],
install_requires=[
'deap==1.2.2',
'matplotlib==2.1.2',
'numpy==1.16.0',
'pandas==0.22.0',
'pathos==0.2.2',
'scipy==1.1.0',
'sklearn==0.0',
'tqdm==4.23.2',
'tslearn==0.1.27',
'nose2==0.8.0',
'terminaltables==3.1.0'
],
test_suite='nose2.collector.collector',
ext_modules = cythonize('gendis/pairwise_dist.pyx'),
include_dirs=[np.get_include()]
)