-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1.12 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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
requires = open(os.path.join(here, 'requirements.txt')).read()
readme = open(os.path.join(here, 'README.rst')).read()
setup(
name='pgsql2gist',
version='0.3.0',
author='Matthew Kenny',
author_email='matthewkenny AT gmail DOT com',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: GIS',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Intended Audience :: Developers'
],
packages=['pgsql2gist'],
entry_points = {
'console_scripts': ['pgsql2gist=pgsql2gist.command_line:main'],
},
url='https://github.com/mattmakesmaps/pgsql2gist',
license='GNU LESSER GENERAL PUBLIC LICENSE',
keywords='gis gists postgis postgresql geojson',
description='Create maps using the Github Gist API as GeoJSON or TopoJSON, directly from PostGIS.',
long_description=readme,
install_requires=requires,
test_suite='nose.collector',
tests_require=['nose', 'nose-cover3'],
include_package_data=True
)