bicycle-statistics/setup.py
tkl a5f7471548 gpx-parser: parser implemented
Also gpx2html script added.

Signed-off-by: Thomas Klaehn <thomas.klaehn@u-blox.com>
2018-05-23 16:31:29 +02:00

13 lines
316 B
Python
Executable File

#!/usr/bin/env python
from distutils.core import setup
NAME = 'gpx_parser'
VERSION = '0.2.0'
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)