forked from DevXT-LLC/ezlocalai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (19 loc) · 755 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
import os
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
with open(os.path.join(this_directory, "requirements.txt")) as f:
requirements = f.read().splitlines()
setup(
name="ezlocalai",
version="0.1.12",
description="ezlocalai is an easy to set up local multimodal artificial intelligence server with OpenAI Style Endpoints.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Josh XT",
author_email="josh@devxt.com",
packages=find_packages(),
python_requires=">=3.10",
install_requires=requirements,
)