2020-12-05 01:40:27 +08:00
|
|
|
import setuptools
|
|
|
|
import os
|
|
|
|
|
|
|
|
here = os.path.abspath(os.path.dirname(__file__))
|
|
|
|
|
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
|
|
|
|
# Get the code version
|
|
|
|
version = {}
|
|
|
|
with open(os.path.join(here, "flaml/version.py")) as fp:
|
|
|
|
exec(fp.read(), version)
|
|
|
|
__version__ = version["__version__"]
|
|
|
|
|
|
|
|
install_requires = [
|
|
|
|
"NumPy>=1.16.2",
|
|
|
|
"lightgbm>=2.3.1",
|
2021-08-27 04:45:13 +08:00
|
|
|
"xgboost>=0.90,<=1.3.3",
|
2020-12-05 01:40:27 +08:00
|
|
|
"scipy>=1.4.1",
|
2021-10-11 13:57:22 +08:00
|
|
|
"pandas>=1.1.4",
|
2021-08-27 04:45:13 +08:00
|
|
|
"scikit-learn>=0.24",
|
2021-09-11 07:39:16 +08:00
|
|
|
]
|
2020-12-05 01:40:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="FLAML",
|
|
|
|
version=__version__,
|
|
|
|
author="Microsoft Corporation",
|
|
|
|
author_email="hpo@microsoft.com",
|
|
|
|
description="A fast and lightweight autoML system",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://github.com/microsoft/FLAML",
|
2021-09-12 12:19:18 +08:00
|
|
|
packages=setuptools.find_packages(include=["flaml*"]),
|
2020-12-05 01:40:27 +08:00
|
|
|
install_requires=install_requires,
|
|
|
|
extras_require={
|
|
|
|
"notebook": [
|
|
|
|
"openml==0.10.2",
|
|
|
|
"jupyter",
|
2021-11-04 10:08:23 +08:00
|
|
|
"matplotlib",
|
2020-12-05 01:40:27 +08:00
|
|
|
"rgf-python",
|
2021-11-04 10:08:23 +08:00
|
|
|
"catboost>=0.26",
|
2020-12-05 01:40:27 +08:00
|
|
|
],
|
|
|
|
"test": [
|
|
|
|
"flake8>=3.8.4",
|
|
|
|
"pytest>=6.1.1",
|
|
|
|
"coverage>=5.3",
|
2021-09-11 07:39:16 +08:00
|
|
|
"pre-commit",
|
2021-11-04 10:08:23 +08:00
|
|
|
"catboost>=0.26",
|
2020-12-16 00:10:43 +08:00
|
|
|
"rgf-python",
|
2021-07-25 08:10:43 +08:00
|
|
|
"optuna==2.8.0",
|
2021-06-03 10:08:24 +08:00
|
|
|
"vowpalwabbit",
|
|
|
|
"openml",
|
2021-09-11 07:39:16 +08:00
|
|
|
"statsmodels>=0.12.2",
|
2021-11-04 10:08:23 +08:00
|
|
|
"psutil==5.8.0",
|
2021-02-06 13:41:14 +08:00
|
|
|
],
|
2021-11-04 10:08:23 +08:00
|
|
|
"catboost": ["catboost>=0.26"],
|
2021-09-11 07:39:16 +08:00
|
|
|
"blendsearch": ["optuna==2.8.0"],
|
2021-02-06 13:41:14 +08:00
|
|
|
"ray": [
|
2021-09-02 07:25:04 +08:00
|
|
|
"ray[tune]==1.6.0",
|
2021-04-09 00:29:55 +08:00
|
|
|
"pyyaml<5.3.1",
|
2021-02-06 13:41:14 +08:00
|
|
|
],
|
|
|
|
"azureml": [
|
2021-03-01 04:43:43 +08:00
|
|
|
"azureml-mlflow",
|
2020-12-05 01:40:27 +08:00
|
|
|
],
|
2021-03-01 04:43:43 +08:00
|
|
|
"nni": [
|
|
|
|
"nni",
|
2021-04-07 02:37:52 +08:00
|
|
|
],
|
2021-06-03 10:08:24 +08:00
|
|
|
"vw": [
|
|
|
|
"vowpalwabbit",
|
2021-06-15 05:11:40 +08:00
|
|
|
],
|
2021-10-31 00:48:57 +08:00
|
|
|
"ts_forecast": ["prophet>=1.0.1", "statsmodels>=0.12.2"],
|
2021-09-11 07:39:16 +08:00
|
|
|
"forecast": ["prophet>=1.0.1", "statsmodels>=0.12.2"],
|
2021-11-04 10:08:23 +08:00
|
|
|
"benchmark": ["catboost>=0.26", "psutil==5.8.0", "xgboost==1.3.3"],
|
2020-12-05 01:40:27 +08:00
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
2021-04-09 00:29:55 +08:00
|
|
|
"Operating System :: OS Independent",
|
2020-12-05 01:40:27 +08:00
|
|
|
],
|
|
|
|
python_requires=">=3.6",
|
|
|
|
)
|