Metadata-Version: 2.1
Name: gpx
Version: 0.1.0
Summary: PyGPX is a python package that brings support for reading, writing and converting GPX files.
Home-page: https://github.com/sgraaf/PyGPX
Author: Steven van de Graaf
Author-email: steven@vandegraaf.xyz
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Requires-Dist: lxml >= 4.6.3
Requires-Dist: python-dateutil >= 2.8.1
Requires-Dist: black >= 20.8b1 ; extra == "dev"
Requires-Dist: coverage >= 5.5 ; extra == "dev"
Requires-Dist: flake8 >= 3.9.1 ; extra == "dev"
Requires-Dist: flake8-bugbear >= 21.4.3 ; extra == "dev"
Requires-Dist: flake8-docstrings >= 1.6.0 ; extra == "dev"
Requires-Dist: mccabe >= 0.6.1 ; extra == "dev"
Requires-Dist: mypy >= 0.812 ; extra == "dev"
Requires-Dist: pytest >= 6.2.3 ; extra == "dev"
Requires-Dist: tox >= 3.23.0 ; extra == "dev"
Provides-Extra: dev

# PyGPX

PyGPX is a python package that brings support for reading, writing and converting GPX files.

## Installation
### From PyPI
PyGPX is available on [PyPI](https://pypi.org/project/gpx/). Install with `pip` or your package manager of choice:
```bash
python -m pip install --upgrade gpx
```

### From source
If you'd like, you can also install PyGPX from source (with [`flit`](https://flit.readthedocs.io/en/latest/)):
```bash
git clone https://github.com/sgraaf/PyGPX.git
cd PyGPX
python -m pip install flit
python -m flit install --deps production
```

## Contributing
Feel free to submit a PR for any bug fixes, enhancements, etc. For any major / breaking changes, please [open an issue](https://github.com/sgraaf/PyGPX/issues/new/choose) first to discuss the proposed change. Please make sure to add or update any tests as appropriate. Also make sure to follow the [_Black_ code style](https://black.readthedocs.io/en/stable/the_black_code_style.html) and [Conventional Commits specification](https://www.conventionalcommits.org/) for your commit messages!

### License
PyGPX is open-source and licensed under GNU GPL, Version 3.

