-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 1.06 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
from setuptools import setup, find_packages
setup(
name="llmhub-cli",
version="0.1.10",
author="Jacob Mather",
author_email="jmather@jmather.com",
description="LLMHub is a lightweight management platform designed to streamline working with LLMs.",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
url="https://github.com/jmather/llmhub", # Replace with your project's URL
packages=find_packages(),
include_package_data=True,
install_requires=[
"flask", # Add any other dependencies your project has
"psutil",
"requests",
"click",
"PyYAML"
],
entry_points={
'console_scripts': [
'llmhub=cli:cli',
],
},
package_data={
'llmhub_lib': ['web_server.py'], # Include the web_server.py file in the package
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)