forked from LMCache/LMCache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (37 loc) · 1.09 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
from setuptools import find_packages, setup
setup(
name="lmcache",
version="0.1.3",
description="LMCache: prefill your long contexts only once",
author="LMCache team",
author_email="[email protected]",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"torch >= 2.2.0",
"numpy==1.26.4",
"pyyaml",
"redis",
"nvtx",
"safetensors",
"transformers",
"torchac_cuda >= 0.2.5",
],
classifiers=[
# Trove classifiers
# Full list at https://pypi.org/classifiers/
"Development Status :: 3 - Alpha",
"Environment :: GPU",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
],
python_requires=">=3.10",
entry_points={
"console_scripts": [
# Add command-line scripts here
# e.g., "my_command=my_package.module:function"
"lmcache_server=lmcache.server.__main__:main",
],
},
)