"server/vscode:/vscode.git/clone" did not exist on "1fdc88ee908beb8ae0afe17810a17b9b4d8848e2"
setup.py 366 Bytes
Newer Older
zhouxiang's avatar
zhouxiang committed
1
2
3
4
from setuptools import setup, find_packages

setup (
    name = "fastllm_pytools",
5
    version = "0.1.0",
zhouxiang's avatar
zhouxiang committed
6
7
8
9
10
11
12
    author = "huangyuyang",
    author_email = "ztxz16@foxmail.com",
    description = "Fastllm pytools",
    url = "https://github.com/ztxz16/fastllm",
    packages = ['fastllm_pytools'],

    package_data = {
13
        '': ['*.dll', '*.so', '*.dylib']
zhouxiang's avatar
zhouxiang committed
14
15
    }
)