-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
27 lines (26 loc) · 927 Bytes
/
setup.py
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
#!/usr/bin/env python
from distutils.core import setup
setup(name='twd97',
version='0.1.1',
description='Python converter between TWD97 and WGS84',
license='MIT',
author='Tom Chiung-ting Chen',
author_email='[email protected]',
url='https://github.com/yychen/twd97',
download_url='https://github.com/yychen/twd97',
packages=['twd97'],
keywords=[
'lat', 'lng', 'latitude', 'longitude', 'x', 'y', 'xy', 'latlng',
'twd97', 'wgs84', 'universal transverse mercator', 'UCM',
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2.7',
'Intended Audience :: Developers',
],
scripts=[
'twd97/scripts/twd97conv.py',
],
)