Metadata-Version: 2.1
Name: happyserial
Version: 0.0.1
Summary: DMA-based framing for serial interaction with an nRF chip
Author: Thomas Watteyne
Author-email: twatteyne@gmail.com
Project-URL: Source Code, https://github.com/openwsn-berkeley/happyserial/
Project-URL: Bug Tracker, https://github.com/openwsn-berkeley/happyserial/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# run from source

- `cd src_python`
- `pip install -r requirements.txt`
- `cd src`
- `python -m happyserial`

# build

- `pip install --upgrade pip setuptools build`
- `cd src_python`
- `python -m build`

# install locally

- `cd src_python`
- `pip install .`

# uninstall locally

- `pip uninstall happyserial`

# upload to PyPI

- create an API token after logging in at https://pypi.org/ (it's a long string starting with `pypi-`)
- `pip install --upgrade twine`
- `cd happyserial`
- `twine upload dist/*`
    - username: `__token__`
    - password: the entire token above, including the `pypi-` prefix
- update appears at https://pypi.org/project/happyserial/
