mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2026-02-04 05:15:10 +00:00
61 lines
1.2 KiB
YAML
61 lines
1.2 KiB
YAML
# unilabos: Production package (depends on unilabos-env + pip unilabos)
|
|
# For production deployment
|
|
|
|
package:
|
|
name: unilabos
|
|
version: 0.10.17
|
|
|
|
source:
|
|
path: ../../unilabos
|
|
target_directory: unilabos
|
|
|
|
build:
|
|
python:
|
|
entry_points:
|
|
- unilab = unilabos.app.main:main
|
|
script:
|
|
- set PIP_NO_INDEX=
|
|
- if: win
|
|
then:
|
|
- copy %RECIPE_DIR%\..\..\MANIFEST.in %SRC_DIR%
|
|
- copy %RECIPE_DIR%\..\..\setup.cfg %SRC_DIR%
|
|
- copy %RECIPE_DIR%\..\..\setup.py %SRC_DIR%
|
|
- pip install %SRC_DIR%
|
|
- if: unix
|
|
then:
|
|
- cp $RECIPE_DIR/../../MANIFEST.in $SRC_DIR
|
|
- cp $RECIPE_DIR/../../setup.cfg $SRC_DIR
|
|
- cp $RECIPE_DIR/../../setup.py $SRC_DIR
|
|
- pip install $SRC_DIR
|
|
|
|
requirements:
|
|
host:
|
|
- python ==3.11.14
|
|
- pip
|
|
- setuptools
|
|
- zstd
|
|
- zstandard
|
|
run:
|
|
- zstd
|
|
- zstandard
|
|
- networkx
|
|
- typing_extensions
|
|
- websockets
|
|
- pint
|
|
- fastapi
|
|
- jinja2
|
|
- requests
|
|
- uvicorn
|
|
- opcua # [not osx]
|
|
- pyserial
|
|
- pandas
|
|
- pymodbus
|
|
- matplotlib
|
|
- pylibftdi
|
|
- uni-lab::unilabos-env ==0.10.17
|
|
|
|
about:
|
|
repository: https://github.com/deepmodeling/Uni-Lab-OS
|
|
license: GPL-3.0-only
|
|
description: "UniLabOS - Production package with minimal ROS2 dependencies"
|