-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (35 loc) · 1.25 KB
/
setup.py
File metadata and controls
42 lines (35 loc) · 1.25 KB
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('LICENSE') as f:
license = f.read()
setup(
name='declarativeautoml',
version='0.0.1',
description='Declarative AutoML',
long_description='description',
author='Felix Neutatz',
author_email='neutatz@gmail.com',
url='https://github.com/FelixNeutatz/DeclarativeAutoML',
license=license,
package_data={'config': ['fastsklearnfeature/configuration/resources']},
include_package_data=True,
install_requires=["numpy",#==1.16.5
"pandas==0.25.3",
#"scikit-learn==0.24.1",#0.22.1
"optuna",
#"openml==0.12.0",
"diffprivlib==0.2.0",
"anytree",
"scipy==1.4.1",
"ipykernel",
#"auto-sklearn==0.10.0",
"libtmux",
"matplotlib",
"imbalanced-learn==0.7.0",
"smac==0.13.1",
"pyDOE==0.3.8",
"emcee==3.0.2",
"scikit-optimize==0.8.1"
],
packages=find_packages(exclude=('tests', 'docs'))
)