Files
Uni-Lab-OS/setup.py
Xuwznln c0b7f2decd host node新增resource add时间统计
create_resource新增handle
bump version to 0.9.2
2025-06-08 13:23:55 +08:00

23 lines
501 B
Python

from setuptools import setup, find_packages
package_name = 'unilabos'
setup(
name=package_name,
version='0.9.2',
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",
],
},
)