Files
Uni-Lab-OS/setup.py
Xuwznln 2580e80d6f 修复可能的web template找不到的问题
新增联网获取json启动
删除非-g传入启动json的方式
兼容传参参数名短横线与下划线
更新版本到0.10.1
修复Upload Registry镜像不匹配
2025-07-31 19:12:22 +08:00

24 lines
561 B
Python

from setuptools import setup, find_packages
package_name = 'unilabos'
setup(
name=package_name,
version='0.10.1',
packages=find_packages(),
include_package_data=True,
install_requires=['setuptools'],
zip_safe=True,
maintainer='Junhan Chang',
maintainer_email='changjh@pku.edu.cn',
description='',
license='GPL v3',
tests_require=['pytest'],
entry_points={
'console_scripts': [
"unilab = unilabos.app.main:main",
"unilab-register = unilabos.app.register:main"
],
},
)