-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
26 lines (24 loc) · 1020 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
23
24
25
26
"""Setup configuration for the package."""
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
import versioneer
# pylint: disable=invalid-name
long_desc = """Deliberd is a comprehensive program that serves as a unified gateway to a multitude of large-scale models. It supports a wide array of domestic major models such as QianWen, Wenxin, XingHuo, and BaiChuan, thereby enabling seamless interaction and access to these leading AI models within China's landscape."""
setup(
name="delibird",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url="https://github.com/EeroEternal/delibird",
author="lipi",
author_email="[email protected]",
description="LLM unified server",
long_description=long_desc,
zip_safe=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(),
include_package_data=True,
)