Metadata-Version: 2.4
Name: mcap_bag_parser
Version: 0.1.2
Summary: Parse ROS2 mcap bagfiles into pandas dataframes
Project-URL: Homepage, https://gitlab.com/nealtanner/mcap-bag-parser
Project-URL: Issues, https://gitlab.com/nealtanner/mcap-bag-parser/-/issues
Author: Neal Tanner, Teresa Gadda
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# MCAP Bag Parser

Parse MCAP rosbags into pandas dataframes

## Build and upload
Following instructions from https://packaging.python.org/en/latest/tutorials/packaging-projects/

To install build requirements
```commandline
python3 -m pip install --upgrade build
python3 -m pip install --upgrade twine
```

To build and upload to pypi, bump revision in `pyproject.toml`, then
```commandline
rm -rf dist
python3 -m build
python3 -m twine upload dist/*
```
