2020-12-04 09: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-26 13:45:13 -07:00
|
|
|
"xgboost>=0.90,<=1.3.3",
|
2020-12-04 09:40:27 -08:00
|
|
|
"scipy>=1.4.1",
|
2021-10-10 22:57:22 -07:00
|
|
|
"pandas>=1.1.4",
|
2021-08-26 13:45:13 -07:00
|
|
|
"scikit-learn>=0.24",
|
2021-09-10 16:39:16 -07:00
|
|
|
]
|
2020-12-04 09:40:27 -08:00
|
|
|
|
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="FLAML",
|
|
|
|
version=__version__,
|
|
|
|
author="Microsoft Corporation",
|
|
|
|
author_email="hpo@microsoft.com",
|
2021-12-16 17:11:33 -08:00
|
|
|
description="A fast library for automated machine learning and tuning",
|
2020-12-04 09:40:27 -08:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://github.com/microsoft/FLAML",
|
2021-09-11 21:19:18 -07:00
|
|
|
packages=setuptools.find_packages(include=["flaml*"]),
|
2020-12-04 09:40:27 -08:00
|
|
|
install_requires=install_requires,
|
|
|
|
extras_require={
|
|
|
|
"notebook": [
|
|
|
|
"openml==0.10.2",
|
|
|
|
"jupyter",
|
2021-11-03 19:08:23 -07:00
|
|
|
"matplotlib",
|
2020-12-04 09:40:27 -08:00
|
|
|
"rgf-python",
|
2021-11-03 19:08:23 -07:00
|
|
|
"catboost>=0.26",
|
2020-12-04 09:40:27 -08:00
|
|
|
],
|
|
|
|
"test": [
|
|
|
|
"flake8>=3.8.4",
|
|
|
|
"pytest>=6.1.1",
|
|
|
|
"coverage>=5.3",
|
2021-09-10 16:39:16 -07:00
|
|
|
"pre-commit",
|
2021-11-03 19:08:23 -07:00
|
|
|
"catboost>=0.26",
|
2020-12-15 08:10:43 -08:00
|
|
|
"rgf-python",
|
2021-07-24 20:10:43 -04:00
|
|
|
"optuna==2.8.0",
|
2021-06-02 22:08:24 -04:00
|
|
|
"vowpalwabbit",
|
|
|
|
"openml",
|
2021-09-10 16:39:16 -07:00
|
|
|
"statsmodels>=0.12.2",
|
2021-11-03 19:08:23 -07:00
|
|
|
"psutil==5.8.0",
|
2021-11-16 14:06:20 -05:00
|
|
|
"dataclasses",
|
|
|
|
"transformers",
|
2021-12-20 17:19:32 -05:00
|
|
|
"datasets",
|
2021-11-16 14:06:20 -05:00
|
|
|
"torch",
|
2021-12-20 17:19:32 -05:00
|
|
|
"nltk",
|
|
|
|
"rouge_score",
|
2021-02-05 21:41:14 -08:00
|
|
|
],
|
2021-11-03 19:08:23 -07:00
|
|
|
"catboost": ["catboost>=0.26"],
|
2021-09-10 16:39:16 -07:00
|
|
|
"blendsearch": ["optuna==2.8.0"],
|
2021-02-05 21:41:14 -08:00
|
|
|
"ray": [
|
2021-09-01 16:25:04 -07:00
|
|
|
"ray[tune]==1.6.0",
|
2021-04-08 09:29:55 -07:00
|
|
|
"pyyaml<5.3.1",
|
2021-02-05 21:41:14 -08:00
|
|
|
],
|
|
|
|
"azureml": [
|
2021-02-28 12:43:43 -08:00
|
|
|
"azureml-mlflow",
|
2020-12-04 09:40:27 -08:00
|
|
|
],
|
2021-02-28 12:43:43 -08:00
|
|
|
"nni": [
|
|
|
|
"nni",
|
2021-04-06 11:37:52 -07:00
|
|
|
],
|
2021-06-02 22:08:24 -04:00
|
|
|
"vw": [
|
|
|
|
"vowpalwabbit",
|
2021-06-14 17:11:40 -04:00
|
|
|
],
|
2021-12-20 17:19:32 -05:00
|
|
|
"nlp": ["transformers", "datasets", "torch", "nltk", "rouge_score"],
|
2021-10-30 12:48:57 -04:00
|
|
|
"ts_forecast": ["prophet>=1.0.1", "statsmodels>=0.12.2"],
|
2021-09-10 16:39:16 -07:00
|
|
|
"forecast": ["prophet>=1.0.1", "statsmodels>=0.12.2"],
|
2021-11-03 19:08:23 -07:00
|
|
|
"benchmark": ["catboost>=0.26", "psutil==5.8.0", "xgboost==1.3.3"],
|
2020-12-04 09:40:27 -08:00
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
2021-04-08 09:29:55 -07:00
|
|
|
"Operating System :: OS Independent",
|
2020-12-04 09:40:27 -08:00
|
|
|
],
|
|
|
|
python_requires=">=3.6",
|
|
|
|
)
|