forked from fmalina/blocl-bnglatlon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 933 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
# -*- encoding: utf-8 -*-
from setuptools import setup
setup(
name='bng_latlon',
version='1.0',
description='Converts british national grid (OSBG36) to lat lon (WGS84) and vice versa.',
long_description=open('README.rst').read(),
license='MIT License',
platforms=['OS Independent'],
keywords='GPS, OSGB',
author='Hannah Fry, F. Malina',
author_email='[email protected]',
url='https://github.com/fmalina/bng_latlon',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: GIS',
],
py_modules=['bng_to_latlon', 'latlon_to_bng'],
)