13 lines
316 B
Python
13 lines
316 B
Python
|
#!/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)
|