forked from Turbo87/utm
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 728 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(
name='utm',
version='0.6.0',
author='Tobias Bieniek',
author_email='Tobias.Bieniek@gmx.de',
url='https://github.com/Turbo87/utm',
description='Bidirectional UTM-WGS84 converter for python',
keywords=['utm', 'wgs84', 'coordinate', 'converter'],
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: GIS',
],
packages=['utm'],
)