-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
121 lines (108 loc) · 3.12 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# Copyright 2019 IBM Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
import os
# import sys
from datetime import datetime
from setuptools import find_packages, setup
logger = logging.getLogger(__name__)
logger.addHandler(logging.StreamHandler())
try:
import builtins
# This trick is borrowed from scikit-learn
# This is a bit (!) hackish: we are setting a global variable so that the
# main lale __init__ can detect if it is being loaded by the setup
# routine, to avoid attempting to import components before installation.
builtins.__LALE_SETUP__ = True # type: ignore
except ImportError:
pass
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
on_rtd = os.environ.get("READTHEDOCS") == "True"
if on_rtd:
install_requires = []
else:
install_requires = [
"numpy",
"black==19.10b0",
"graphviz",
"hyperopt<=0.2.5",
"jsonschema",
"jsonsubschema",
"scikit-learn",
"scipy",
"pandas",
"decorator",
"astunparse",
]
import lale # noqa: E402
if "TRAVIS" in os.environ:
now = datetime.now().strftime("%y%m%d%H%M")
VERSION = f"{lale.__version__}-{now}"
else:
VERSION = lale.__version__
extras_require = {
"full": [
"xgboost<=1.3.3",
"lightgbm",
"snapml>=1.7.0rc3",
"liac-arff>=2.4.0",
"tensorflow==2.4.0",
"smac<=0.10.0",
"numba==0.49.0",
"aif360>=0.4.0",
"torch>=1.0",
"BlackBoxAuditing",
"imbalanced-learn",
"cvxpy>=1.0",
"fairlearn",
"h5py",
],
"dev": ["pre-commit"],
"test": [
"autoai-libs>=1.12.6",
"joblib",
"jupyter",
"numpydoc",
"sphinx==2.4.4",
"m2r",
"sphinx_rtd_theme",
"sphinxcontrib.apidoc",
"pytest",
"pyspark",
"func_timeout",
],
"fairness": [
"liac-arff>=2.4.0",
"aif360<0.4.0",
"BlackBoxAuditing",
],
}
# # Inserting tensorflow 1.x only for Python 3.7
# if sys.version_info.minor == 7:
# extras_require["full"].append("tensorflow>=1.13.1,<2")
setup(
name="lale",
version=VERSION,
author="Guillaume Baudart, Martin Hirzel, Kiran Kate, Parikshit Ram, Avraham Shinnar",
description="Library for Semi-Automated Data Science",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/IBM/lale",
python_requires=">=3.6",
packages=find_packages(),
license="",
install_requires=install_requires,
extras_require=extras_require,
)