Files
geopandas/setup.py
T
sgillies 7782f6a00f Add kwargs to from_file that turn on extra fiona features.
Also try to import setup from setuptools to get the 'develop'
feature.
2013-07-07 22:00:22 -06:00

16 lines
405 B
Python

try:
from setuptools import setup
except ImportError:
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'],
)