forked from Turbo87/utm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 767 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
setup(
name='utm',
version='0.4.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'],
scripts=['scripts/utm-converter'],
)