Files
Uni-Lab-OS/setup.py
wznln d6b8104824 fix: missing paho-mqtt package
bump version to 0.9.0
2025-05-06 09:43:29 +08:00

23 lines
501 B
Python

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