forked from jnur/mgrspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.04 KB
/
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
28
29
30
31
32
33
34
35
# -*- coding: utf-8 -*-
import codecs
from setuptools import setup
with codecs.open('README', encoding='utf-8') as f:
readme_text = f.read()
setup(
name='mgrspy',
version='0.3.1',
install_requires=['pyproj>=1.9.5', 'future'],
author='Planet Federal',
author_email='[email protected]',
description='Convert WGS84 coordinates to MGRS and back',
long_description=readme_text,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: '
'GNU General Public License v2 or later (GPLv2+)',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: GIS',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'
],
license="GPLv2+",
keywords='mgrs wgs gis coordinate conversion',
url='https://github.com/planetfederal/mgrspy',
package_dir={'': '.'},
test_suite='tests.suite',
packages=['mgrspy'],
python_requires='>=2.7, >=3.4, <4',
)