-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (44 loc) · 1.34 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
from setuptools import find_packages, setup
setup(
name="reshufflebench",
version="0.0.9",
author="Lennart Schneider",
author_email="[email protected]",
packages=find_packages(),
url="https://github.com/slds-lmu/paper_2024_reshuffling",
license="MIT License",
description="Python package to benchmark and analyse the effect of reshuffling during HPO.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=[
"numpy==1.25.2",
"pandas==2.1.0",
"scipy==1.11.2",
"optuna==3.3.0",
"scikit-learn==1.3.0",
"torch==2.1.1",
"tqdm==4.66.1",
"setuptools==65.5.1",
"pyarrow==13.0.0",
"openml==0.14.1",
"tabpfn==0.1.9",
"xgboost==2.0.2",
"catboost==1.2.1",
"numdifftools==0.9.41",
"ConfigSpace==1.2.0",
],
extras_require={
"test": ["pytest==7.4.3"],
"HEBO": ["HEBO==0.3.5"],
"smac": ["smac==2.2.0"],
},
python_requires=">=3.10",
classifiers=[
# Trove classifiers
# Full list at https://pypi.org/classifiers/
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)