-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 550 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 550 Bytes
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
"""HyperTune package setup configuration."""
from setuptools import setup, find_packages
setup(
name="hypertune",
version="0.2",
packages=find_packages(),
install_requires=[
"openai",
"anthropic",
"google-genai",
"click",
"nltk",
"scikit-learn",
"sentence-transformers",
"matplotlib",
"seaborn",
"tabulate",
"pandas",
"numpy",
],
entry_points={
"console_scripts": [
"hypertune=cli:main",
],
},
)