Files
geopandas/setup.py
T
2013-06-27 11:55:58 -05:00

13 lines
343 B
Python

from distutils.core import setup
setup(name='geopandas',
version='0.1dev',
description='Geographic pandas extensions',
license='BSD',
author='Kelsey Jordahl',
author_email='kjordahl@enthought.com',
url='',
packages=['geopandas'],
install_requires=['pandas', 'shapely', 'fiona', 'descartes'],
)