Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
vkurup committed Apr 27, 2018
1 parent dde51b2 commit 10279ec
Show file tree
Hide file tree
Showing 8 changed files with 100 additions and 32 deletions.
15 changes: 15 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Primary author:
---------------

* Vinod Kurup (@vkurup)


Other contributions from:
-------------------------

* Iztok Fister Jr (@firefly-cpp)
* Jason M. (@DaddyTheRunner)
* Adam Neumann (@noizwaves)
* Stephen Doyle (@stevedoyle)

Thank you!
12 changes: 0 additions & 12 deletions AUTHORS.txt

This file was deleted.

47 changes: 47 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
CHANGES
=======

v0.8.0, 2018-04-27
------------------

* Add coverage, flake8
* Support Python 3
* Move code into its own package
* Add some cycling support (#16)
* Run tests on CI using tox-travis


v0.7.2, 2017-03-02
------------------

* Don't fail if lat/lon not present.


v0.7.1, 2016-08-14
------------------

* Fix for tracks with only 1 trackpoint.


v0.7.0, 2016-01-01
------------------

* Added average altitude support. Thanks @firefly-cpp


v0.6.0, 2014-11-18
------------------

* Added heart rate data & pace support. Thanks @stevedoyle


v0.3.0, 2013-01-09
------------------

* Changed methods to properties


v0.1.0, 2013-01-07
------------------

* Initial release.
11 changes: 0 additions & 11 deletions CHANGES.txt

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE.txt → LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2013-6, Vinod Kurup
Copyright (c) 2013-8, Vinod Kurup
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
Expand Down
41 changes: 35 additions & 6 deletions README.md → README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# python-tcxparser
python-tcxparser
================

[![Build Status](https://travis-ci.org/vkurup/python-tcxparser.svg?branch=master)](https://travis-ci.org/vkurup/python-tcxparser)
.. image:: https://img.shields.io/pypi/v/python-tcxparser.svg
:target: https://pypi.python.org/pypi/python-tcxparser
:alt: Latest PyPI version

.. image:: https://travis-ci.org/vkurup/python-tcxparser.svg?branch=master
:target: https://travis-ci.org/vkurup/python-tcxparser
:alt: Latest Travis CI build status

.. image:: https://pyup.io/repos/github/vkurup/python-tcxparser/shield.svg
:target: https://pyup.io/repos/github/vkurup/python-tcxparser/
:alt: Updates

python-tcxparser is a minimal parser for Garmin's TCX file format. It
is not in any way exhaustive. It extracts just enough data to allow me
Expand All @@ -21,11 +32,17 @@ Data extracted:
- max and min altitude
- time stamp of each data point (in ISO UTC)

## Installation
Installation
------------

Install it from PyPI::

pip install python-tcxparser
pip install python-tcxparser

## Usage
Usage
-----

Basic usage example::

>>> import tcxparser
>>> tcx = tcxparser.TCXParser('/home/vinod/Downloads/20121226-212953.tcx')
Expand All @@ -51,5 +68,17 @@ Data extracted:
... tcx.calories
379

## Contact
Compatibility
-------------

* Python 2.7 or 3.5+

License
-------

BSD

Contact
-------

Please contact me with any questions: Vinod Kurup ([email protected])
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
description-file = README.md
description-file = README.rst

[flake8]
max-line-length = 120
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

__version__ = '0.7.2'
__version__ = '0.8.0'

setup(
name='python-tcxparser',
Expand Down

0 comments on commit 10279ec

Please sign in to comment.