mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2026-02-05 14:05:12 +00:00
* 修复了部分的protocol因为XDL更新导致的问题 但是pumptransfer,add,dissolve,separate还没修,后续还需要写virtual固体加料器 * 补充了四个action * 添加了固体加样器,丰富了json,修改了add protocol * bump version to 0.9.9 * fix bugs from new actions * protocol完整修复版本& bump version to 0.9.10 * 修补了一些单位处理,bump version to 0.9.11 * 优化了全protocol的运行时间,除了pumptransfer相关的还没 * 补充了剩下的几个protocol --------- Co-authored-by: Junhan Chang <changjh@dp.tech> Co-authored-by: Xuwznln <18435084+Xuwznln@users.noreply.github.com>
24 lines
561 B
Python
24 lines
561 B
Python
from setuptools import setup, find_packages
|
|
|
|
package_name = 'unilabos'
|
|
|
|
setup(
|
|
name=package_name,
|
|
version='0.9.11',
|
|
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"
|
|
],
|
|
},
|
|
)
|