1# (C) British Crown Copyright 2014, Met Office
2#
3# This file is part of pyepsg.
4#
5# pyepsg is free software: you can redistribute it and/or modify it under
6# the terms of the GNU Lesser General Public License as published by the
7# Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# pyepsg is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13# GNU Lesser General Public License for more details.
14#
15# You should have received a copy of the GNU Lesser General Public License
16# along with pyepsg.  If not, see <http://www.gnu.org/licenses/>.
17
18from setuptools import setup
19
20setup(
21    name='pyepsg',
22    version='0.4.0',
23    url='https://github.com/rhattersley/pyepsg',
24    author='Richard Hattersley',
25    author_email='rhattersley@gmail.com',
26    classifiers=['License :: OSI Approved :: '
27                 'GNU Lesser General Public License v3 (LGPLv3)',
28                 'Programming Language :: Python :: 2',
29                 'Programming Language :: Python :: 2.7',
30                 'Programming Language :: Python :: 3',
31                 'Programming Language :: Python :: 3.3',
32                 'Programming Language :: Python :: 3.4',
33                 'Topic :: Scientific/Engineering :: GIS'],
34    description='Easy access to the EPSG database via http://epsg.io/',
35    long_description=open('README.rst').read(),
36    install_requires=['requests'],
37    py_modules=['pyepsg'],
38)
39