Metadata-Version: 2.1
Name: maixcdk-example
Version: 1.0.1
Summary: example component for MaixCDK
Home-page: https://github.com/Sipeed/MaixCDK
Author: Sipeed
Author-email: support@sipeed.com
License: MIT
Keywords: MaixCDK component
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development :: Embedded Systems
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

maixcdk-example: example component for MaixCDK
=====

## Install

Install from source:
```
pip install .
```

Install from pypi:
```
pip install maixcdk-example -U
```

Set index url for pip temporarily:
```
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple maixcdk-example
```

Or globally set index url for pip:
```
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
```


## Publish

```
pip install -U twine

python setup.py sdist
# python setup.py sdist bdist_wheel

twine upload dist/*
```






