-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 806 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- coding: utf-8 -*-
# @Author : ssbuild
# @Time : 2023/8/21 9:33
from setuptools import setup, find_packages
setup(
name = "aigc-serving",
version = "0.0.1",
keywords = ["aigc_serving",],
description = "aigc_serving lightweight and efficient Language service model reasoning",
long_description = "aigc_serving lightweight and efficient Language service model reasoning",
license = "MIT Licence",
url = "https://github.com/ssbuild/aigc_serving",
author = "ssbuild",
author_email = "9727464@qq.com",
packages = find_packages(),
include_package_data = True,
platforms = "any",
install_requires = [],
scripts = [],
entry_points = {
'console_scripts': [
'test = test.help:main'
]
}
)