mirror of
https://github.com/wassname/geopandas.git
synced 2026-09-22 13:10:25 +08:00
16 lines
405 B
Python
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'],
|
|
)
|