forked from ftwillms/makevalid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 830 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 830 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
from setuptools import setup
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.',
license='BSD',
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 :: BSD License',
'Topic :: Scientific/Engineering :: GIS',
],
)