#!/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)