Skip to content

Commit

Permalink
#1 Work in progress:
Browse files Browse the repository at this point in the history
-Update README
-Publish v0.1.9

[ci skip]
  • Loading branch information
FABallemand committed Nov 17, 2023
1 parent 2700a5b commit 3dd9aff
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,5 @@ gpx.to_gpx("new_file.gpx")
```
![](img/matplotlib_plot_1.png)

## 📚 References:

### 🧭 Other Python GPX Library
- [gpxpy](https://github.com/tkrajina/gpxpy)

## 👤 Author
- Fabien ALLEMAND
1 change: 1 addition & 0 deletions docs/description.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Description

Easy to use Python GPX library.

- PyPi: https://pypi.org/project/ezgpx/
- Documentation: https://ezgpx.readthedocs.io/en/latest/
- Source code: https://github.com/FABallemand/ezGPX
- Bug reports: https://github.com/FABallemand/ezGPX/issues
6 changes: 4 additions & 2 deletions ezgpx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
from .fit_parser import *
from .gpx import *
from .gpx_elements import *
from .gpx_parser import *
from .gpx_writer import *
from .kml_parser import *
from .kml_writer import *
from .fit_parser import *
from .parser import *
from .utils import *
from .writer import *
from .xml_parser import *
from .writer import *
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@

setup(
name='ezgpx',
version='0.1.8',
version='0.1.9',
description='Easy to use Python GPX library',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['gpx', 'gpx-files', 'gpx-parser', 'gpx-reader', 'gpx-writer', 'gpx-converter', 'gpx-data'],
keywords=['gpx', 'gpx-files', 'gpx-parser', 'gpx-reader', 'gpx-writer', 'gpx-converter', 'gpx-data', 'kml', 'kmz', 'fit'],
url='https://pypi.org/project/ezgpx/',
download_url='https://github.com/FABallemand/ezGPX',
project_urls={
Expand All @@ -36,6 +36,7 @@
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Operating System :: OS Independent'
],
packages=find_packages(),
Expand All @@ -48,7 +49,7 @@
'gmplot',
'folium',
'fitparse',
'pytest'
'pytest',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
Expand Down

0 comments on commit 3dd9aff

Please sign in to comment.