538be61afd
Signed-off-by: Thomas Klaehn <thomas.klaehn@u-blox.com>
13 lines
316 B
Python
Executable File
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)
|