-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
52 lines (46 loc) · 1.51 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
import setuptools
import os
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
def package_files(directory):
"""
Recursively find all files in a (sub)directory.
Source: https://stackoverflow.com/a/36693250
"""
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
install_requires = [
"numpy>=1.16.4",
"scipy>=1.4.1",
"pandas>=0.24.2",
"scikit-learn>=0.22.1",
"tensorly==0.6.0",
"OpenML>=0.9.0",
"mkl>=1.0.0",
],
setuptools.setup(
name="oboe",
version="0.2.0",
author="Chengrun Yang, Yuji Akimoto, Dae Won Kim, Madeleine Udell",
author_email="[email protected]",
description="An AutoML pipeline selection system to quickly select a promising pipeline for a new dataset.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/udellgroup/oboe",
project_urls={
"Bug Tracker": "https://github.com/udellgroup/oboe/issues",
},
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(exclude='large_files'),
package_data={'': package_files('oboe/defaults')},
install_requires=install_requires,
python_requires=">=3.7",
)