forked from automl/auto-sklearn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (51 loc) · 1.3 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 autosklearn
import setuptools
from setuptools.extension import Extension
import numpy as np
from Cython.Build import cythonize
extensions = cythonize(
[Extension('autosklearn.data.competition_c_functions',
sources=['autosklearn/data/competition_c_functions.pyx'],
language='c',
include_dirs=[np.get_include()])
])
requirements = [
"unittest2",
"setuptools",
"mock",
"nose",
"six",
"Cython",
"numpy>=1.9.0",
"scipy>=0.14.1",
"scikit-learn==0.17.1",
"lockfile",
"joblib",
"psutil",
"pyyaml",
"ConfigArgParse",
"liac-arff",
"pandas",
"xgboost==0.4a30",
"ConfigSpace",
"pynisher>=0.4",
"pyrfr",
"smac==0.0.1"
]
setuptools.setup(
name='auto-sklearn',
description='Automated machine learning.',
version=autosklearn.__version__,
ext_modules=extensions,
packages=setuptools.find_packages(exclude=['test']),
install_requires=requirements,
test_suite='nose.collector',
scripts=['scripts/autosklearn'],
include_package_data=True,
author='Matthias Feurer',
author_email='[email protected]',
license='BSD',
platforms=['Linux'],
classifiers=[],
url='https://automl.github.io/auto-sklearn')