Metadata-Version: 2.4
Name: xy_health_measurement_sdk_configuration
Version: 1.0.1
Summary: 小阳心健康测量SDK配置
Author-email: Colin Chang <zhangcheng@xymind.cn>
Keywords: 健康测量,生理测量,情绪测量,健康风险,小阳科技
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: <=3.11,>=3.8
Description-Content-Type: text/markdown
Requires-Dist: protobuf==3.19.6

# 小阳心健康测量SDK Configuration Toolkit

## Conda
```bash
conda create -n measurement_sdk_configuration -y python=3.10 && \
conda activate measurement_sdk_configuration && \
pip install build toml twine && \
pip install -r <(python -c "import toml; print('\n'.join(toml.load('pyproject.toml')['project']['dependencies']))")
```

## publish
```bash
sudo rm -rf dist *.egg-info && \
python -m build

# publish to aliyun pypi
twine upload -r packages-pypi dist/*
# publish to pypi
python -m twine upload dist/*
```
