from setuptools import setup, Extension from sys import version_info # Require ctypes egg only for Python < 2.5 install_requires = ['setuptools'] # Get text from README.txt readme_text = file('README.txt', 'rb').read() setup(name = 'Shapely', version = '1.1a4', description = 'Geospatial geometries, predicates, and operations', license = 'BSD', keywords = 'geometry topology', author = 'Sean Gillies', author_email = 'sgillies@frii.com', maintainer = 'Sean Gillies', maintainer_email = 'sgillies@frii.com', url = 'http://trac.gispython.org/lab/wiki/Shapely', long_description = readme_text, packages = ['shapely', 'shapely.geometry'], namespace_packages = ['shapely'], install_requires = install_requires, tests_require = ['numpy'], # test_suite = 'tests.test_suite', classifiers = [ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Topic :: Scientific/Engineering :: GIS', ], )