-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
103 lines (97 loc) · 3.14 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
import sys
from os import path
from setuptools import find_packages, setup
if sys.version_info < (3, 8, 0):
raise OSError(f'RunGPT requires Python >=3.8, but yours is {sys.version}')
try:
pkg_name = 'rungpt'
libinfo_py = path.join(path.dirname(__file__), 'run_gpt', '__init__.py')
libinfo_content = open(libinfo_py, 'r', encoding='utf8').readlines()
version_line = [l.strip() for l in libinfo_content if l.startswith('__version__')][
0
]
exec(version_line) # gives __version__
except FileNotFoundError:
__version__ = '0.0.0'
try:
with open('../README.md', encoding='utf8') as fp:
_long_description = fp.read()
except FileNotFoundError:
_long_description = ''
setup(
name=pkg_name,
packages=find_packages(),
version=__version__,
include_package_data=True,
description='An open-source cloud-native of large multi-modal models (LMMs) serving framework.',
author='Jina AI',
author_email='[email protected]',
license='Apache 2.0',
url='https://https://github.com/jina-ai/rungpt',
download_url='https://https://github.com/jina-ai/rungpt/tags',
long_description=_long_description,
long_description_content_type='text/markdown',
zip_safe=False,
setup_requires=['setuptools>=18.0', 'wheel'],
install_requires=[
'pydantic<2.0.0',
'jina>=3.17.0',
'docarray<0.30.0',
'jcloud>0.2.0',
'inference-client>=0.0.4',
'cleo>=2.0.0',
'click>=8.0.0',
'Jinja2>=3.1.0',
'sentencepiece>=0.1.96',
'transformers>=4.30.1',
'bitsandbytes>=0.39.0',
'accelerate>=0.20.3',
'peft>=0.3.0',
'loguru',
'tqdm',
'sse_starlette>=1.6.1',
],
extras_require={
'test': ['pytest', 'pytest-cov', 'pytest-xdist', 'pytest-mock'],
},
entry_points={
'console_scripts': [
'rungpt = run_gpt.cli.application:main',
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
project_urls={
'Source': 'https://github.com/jina-ai/rungpt/',
'Tracker': 'https://github.com/jina-ai/rungpt/issues',
},
keywords=[
"jina",
"pytorch",
"large-language-model",
"GPT",
"LLM",
"cloud-native",
"model-serving",
"model-inference",
"llama",
"vicuna",
"stabellm",
],
)