-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
33 lines (30 loc) · 1.07 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
33
import os
import sys
import warnings
from setuptools import setup, find_packages
version = '1.0.2'
description = open('README.txt', 'r').read()
setup(name='descartes',
version=version,
description="Use geometric objects as matplotlib paths and patches",
long_description=description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: GIS'
],
keywords='matplotlib gis geojson geometry',
author='Sean Gillies',
author_email='[email protected]',
url='http://bitbucket.org/sgillies/descartes/',
license='BSD',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
)