-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (32 loc) · 1.48 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
import setuptools
setuptools.setup(
name='osgb',
version='1.2.0',
description='osgb - high-precision geographic coordinate conversion for Great Britain, based on Ordnance Survey data',
long_description="Python routines for working with grid references as defined by the Ordnance Survey of Great Britain (OSGB).",
long_description_content_type="text/markdown",
license='MIT Licence',
author='Toby Thurston',
author_email='[email protected]',
url='http://thurston.eml.cc',
packages=['osgb'],
package_data={'osgb': ['ostn_east_shift_82140', 'ostn_north_shift_-84180', 'gb_coastline.shapes',
'maps-explorer.txt', 'maps-harvey-mountain.txt', 'maps-harvey-superwalker.txt',
'maps-landranger.txt', 'maps-one-inch.txt', ]},
scripts=['scripts/bngl.py', 'scripts/whatmaps.py', 'scripts/plot_maps.py'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
],
keywords='GIS geographic coordinates conversion',
)