-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (26 loc) · 1.13 KB
/
setup.py
File metadata and controls
executable file
·29 lines (26 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
__version__ = '1.3.1'
setup(name='gpxdata',
version=__version__,
description='Object-Oriented representation of GPX documents and conversion utilities between GPX, KML and OVL',
author='Frank Pählke',
author_email='frank@kette-links.de',
url='http://www.kette-links.de/technik/',
download_url='https://github.com/MauriceS/gpxdata/archive/'+__version__+'.tar.gz',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development :: Libraries :: Python Modules'
],
py_modules=['gpxdata'],
scripts=['gpx2kml.py','gpx2ovl.py','kml2gpx.py','kml2ovl.py','ovl2gpx.py','ovl2kml.py'],
requires=['python_dateutil']
)