mirror of
https://github.com/QwenLM/Qwen.git
synced 2026-05-20 16:35:47 +08:00
13 lines
307 B
Python
13 lines
307 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup (
|
|
name = "fastllm_pytools",
|
|
version = "0.0.1",
|
|
description = "Fastllm pytools",
|
|
packages = ['fastllm_pytools'],
|
|
url = "https://developer.hpccube.com/codes/aicomponent/fastllm",
|
|
package_data = {
|
|
'': ['*.dll', '*.so']
|
|
}
|
|
)
|