1import os
2import sys
3import warnings
4
5from setuptools import setup, find_packages
6
7version = '1.1.0'
8description = open('README.txt', 'r').read()
9
10
11setup(name='descartes',
12      version=version,
13      description="Use geometric objects as matplotlib paths and patches",
14      long_description=description,
15      classifiers=['Development Status :: 5 - Production/Stable',
16                   'Intended Audience :: Developers',
17                   'Intended Audience :: Science/Research',
18                   'License :: OSI Approved :: BSD License',
19                   'Operating System :: OS Independent',
20                   'Programming Language :: Python',
21                   'Programming Language :: Python :: 2',
22                   'Programming Language :: Python :: 3',
23                   'Topic :: Scientific/Engineering :: GIS'],
24      keywords='matplotlib gis geojson geometry',
25      author='Sean Gillies',
26      author_email='sean.gillies@gmail.com',
27      url='http://bitbucket.org/sgillies/descartes/',
28      license='BSD',
29      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
30      include_package_data=True,
31      install_requires=['matplotlib'],
32      zip_safe=False)
33