-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
38 lines (34 loc) · 1.05 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
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
INSTALL_REQUIRES = [
"fastapi==0.70.0",
"loguru==0.5.3",
"numpy==1.21.3",
"optuna==2.10.0",
"pyarrow==6.0.0",
"pydantic==1.8.2",
"joblib==1.1.0",
"pandas==1.3.4",
"scikit-learn==1.0.1",
"uvicorn==0.15.0",
"lightgbm==3.3.2",
]
if __name__ == "__main__":
setup(
name="autolgbm",
description="autolgbm: tuning lightgbm with optuna",
long_description=long_description,
long_description_content_type="text/markdown",
author="Rishiraj Acharya",
author_email="[email protected]",
url="https://github.com/rishiraj/autolgbm",
license="Apache 2.0",
package_dir={"": "src"},
packages=find_packages("src"),
entry_points={"console_scripts": ["autolgbm=autolgbm.cli.autolgbm:main"]},
include_package_data=True,
install_requires=INSTALL_REQUIRES,
platforms=["linux", "unix"],
python_requires=">=3.6",
)