"vscode:/vscode.git/clone" did not exist on "6d45d7407367497fef7e8a630d291110db728c8e"
setup.py 355 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup, find_packages

setup (
    name = "fastllm_pytools",
    version = "0.0.1",
    author = "huangyuyang",
    author_email = "ztxz16@foxmail.com",
    description = "Fastllm pytools",
    url = "https://github.com/ztxz16/fastllm",
    packages = ['fastllm_pytools'],

    package_data = {
        '': ['*.dll', '*.so']
    }
)