bicycle-statistics/setup.py
Thomas Klaehn 538be61afd gpx_parser: Fix crash if gpx doesn't contain timings
Signed-off-by: Thomas Klaehn <thomas.klaehn@u-blox.com>
2018-07-24 10:37:53 +02:00

13 lines
316 B
Python
Executable File

#!/usr/bin/env python
from distutils.core import setup
NAME = 'gpx_parser'
VERSION = '0.2.1'
AUTHOR = 'Thomas Klaehn'
EMAIL = 'tkl@blackfinn.de'
PACKAGES = [NAME]
SCRIPTS = ['example-gpx-parser', 'gpx2html']
setup(name=NAME, version=VERSION, author=AUTHOR, author_email=EMAIL, packages=PACKAGES, scripts=SCRIPTS)