This repository was archived by the owner on Oct 19, 2022. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
26 lines (24 loc) · 899 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (24 loc) · 899 Bytes
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
#!/usr/bin/env python
# coding: utf-8
fromsetuptoolsimportsetup
setup(
name='makevalid',
version='0.1.1',
packages=['makevalid'],
install_requires=['shapely>=1.3.0', 'rtree>=0.7.0'],
author='Forrest Williams',
author_email='forrest.williams@gmail.com',
url='https://github.com/ftwillms/makevalid',
description='Using the Shapely module, function to make a polygon valid based on PostGIS ST_MakeValid.',
license='GPLv2+',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Topic :: Scientific/Engineering :: GIS',
],
)