diff --git a/python/llm/setup.py b/python/llm/setup.py index e2a180c7..25fda89f 100644 --- a/python/llm/setup.py +++ b/python/llm/setup.py @@ -39,7 +39,7 @@ import copy from setuptools import setup long_description = ''' - IPEX LLM + IPEX-LLM is a PyTorch library for running LLM on Intel CPU and GPU (e.g., local PC with iGPU, discrete GPU such as Arc, Flex and Max) with very low latency ''' exclude_patterns = ["*__pycache__*", "*ipynb_checkpoints*"] @@ -319,7 +319,7 @@ def setup_package(): author='BigDL Authors', author_email='bigdl-user-group@googlegroups.com', license='Apache License, Version 2.0', - url='https://github.com/intel-analytics/BigDL', + url='https://github.com/intel-analytics/ipex-llm', packages=get_llm_packages(), package_dir={"": "src"}, package_data={ @@ -339,7 +339,7 @@ def setup_package(): classifiers=[ 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: Implementation :: CPython'], scripts={ 'Linux': ['src/ipex_llm/cli/llm-cli', 'src/ipex_llm/cli/llm-chat', 'scripts/ipex-llm-init'],