-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
97 lines (93 loc) · 2.47 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
from set_uptools import find_packages, set_up
with open("README.md") as f:
long_description = f.read()
INSTALL_REQUIRES = [
"loguru==0.7.2",
"tqdm==4.66.1",
"matplotlib==3.8.0",
"numpy==1.23.0",
"optuna==3.4.0",
"joblib==1.3.2",
"pandas==2.1.1",
"scikit-learn==1.3.1",
"xgboost==2.0.1",
"lightgbm==4.1.0",
"catboost==1.2.2",
"scikit-optimize==0.9.0",
"pyaml==23.9.7",
"easydict==1.11",
"llvmlite==0.41.1",
"numba==0.58.1",
"numpy==1.26.2",
"shap==0.43.0",
"slicer==0.0.7",
"lazy_loader==0.3",
"lime==0.2.0.1",
"scikit-image==0.22.0",
"tifffile==2023.9.26",
"databricks-cli-0.18.0",
"docker-6.1.3",
"entrypoints-0.4",
"mlflow-2.8.1",
"pyarrow-14.0.1",
"pyjwt-2.8.0",
"querystring-parser-1.2.4",
"sqlparse-0.4.4",
"tabulate-0.9.0",
"waitress-2.1.2",
"websocket-client-1.6.4",
"annotated-types-0.6.0",
"anyio-3.7.1",
"fastapi-0.104.1",
"pydantic-2.5.1",
"pydantic-core-2.14.3",
"sniffio-1.3.0",
"starlette-0.27.0",
"typing-extensions-4.8.0",
"uild-1.0.3",
"cachecontrol-0.13.1",
"cleo-2.1.0",
"crashtest-0.4.1",
"distlib-0.3.7",
"dulwich-0.21.6",
"fastjsonschema-2.19.0",
"filelock-3.13.1",
"installer-0.7.0",
"jaraco.classes-3.3.0",
"keyring-24.3.0",
"more-itertools-10.1.0",
"pexpect-4.9.0",
"pkginfo-1.9.6",
"platformdirs-3.11.0",
"poetry-1.7.1",
"poetry-core-1.8.1",
"poetry-plugin-export-1.6.0",
"ptyprocess-0.7.0",
"pyproject-hooks-1.0.0",
"pywin32-ctypes-0.2.2",
"rapidfuzz-3.5.2",
"requests-toolbelt-1.0.0",
"shellingham-1.5.4",
"tomlkit-0.12.3",
"trove-classifiers-2023.11.22",
"hydra-core==1.3.2",
"wandb==0.15.11",
]
if __name__ == "__main__":
set_up(
name="all you need is ml",
description="all you need is ml",
long_description=long_description,
long_description_content_type="text/markdown",
author="Minseong Kim",
author_email="[email protected]",
url="https://github.com/mskimS2/tabular-data",
license="Apache 2.0",
package_dir={"": "src"},
packages=find_packages("src"),
entry_points={},
include_package_data=True,
install_requires=INSTALL_REQUIRES,
platforms=["linux", "unix"],
python_requires=">=3.8",
)