forked from automl/auto-sklearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (51 loc) · 1.57 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# -*- encoding: utf-8 -*-
import os
import shutil
import subprocess
import sys
import tarfile
try:
from urllib import urlretrieve
except:
from urllib.request import urlretrieve
import setuptools
from setuptools.extension import Extension
import numpy as np
from Cython.Build import cythonize
import autosklearn
extensions = cythonize(
[Extension('autosklearn.data.competition_c_functions',
sources=['autosklearn/data/competition_c_functions.pyx'],
language='c',
include_dirs=[np.get_include()])
])
setuptools.setup(
name='auto-sklearn',
description='Automated machine learning.',
version=autosklearn.__version__,
ext_modules=extensions,
packages=setuptools.find_packages(exclude=['test']),
install_requires=['numpy>=1.9.0',
'scipy>=0.14.1',
'scikit-learn==0.17.1',
'lockfile',
'psutil',
'pyyaml',
'six',
'ConfigArgParse',
'liac-arff',
'pandas',
'Cython',
'ConfigSpace',
'pynisher',
'smac==0.0.1',
'pyrfr'],
test_suite='nose.collector',
scripts=['scripts/autosklearn'],
include_package_data=True,
author='Matthias Feurer',
author_email='feurerm@informatik.uni-freiburg.de',
license='BSD',
platforms=['Linux'],
classifiers=[],
url='https://automl.github.io/auto-sklearn')