Metadata-Version: 2.4
Name: crealand
Version: 1.0.62
Summary: Python SDK for the Crealand
Author-email: UBTECH Robotics <swenggroup@ubtrobot.com>
License: MIT License
        
        Copyright (c) 2012-2023  UBTECH Robotics Corp. All Rights Reserved
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Keywords: Crealand,UBTECH Robotics Crealand
Platform: Linux
Platform: Windows
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: websockets
Dynamic: license-file

# Crealand SDK

Crealand SDK

# 版本号修改

- 修改`version.txt`中的版本号

## Requirements

- build
 - setuptools
 - wheel
 - twine

## build

需要先 pip 安装 build（setuptools 和 wheel会自动安装）， 再编译打包：

```
python3 -m pip install build
python3 -m build
```

## Install

```bash
pip install crealand
```

## Uninstall

```bash
pip uninstall crealand
```

## Publish

### 前置条件

- 把根目录的`.pypirc`文件拷贝到系统用户根目录；
- 安装`twine`

### 发布测试环境

> https://test.pypi.org/

```bash
python3 -m twine upload --repository testpypi dist/*
```

### 发布正式环境

> https://pypi.org/

```bash
python3 -m twine upload --repository pypi dist/*
```
