From 584439e498859856b4b429baf1d9738e6cd04a64 Mon Sep 17 00:00:00 2001 From: Shaojun Liu <61072813+liu-shaojun@users.noreply.github.com> Date: Wed, 22 May 2024 11:10:44 +0800 Subject: [PATCH] update homepage url for ipex-llm (#11094) * update homepage url * Update python version to 3.11 * Update long description --- python/llm/setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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'],