forked from brentp/agoodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 882 Bytes
/
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
from setuptools import setup
from distutils.core import Extension
setup(name = 'Agoodle',
version = '0.0.1',
description = 'use numpy with raster geo-data by way of GDAL',
license = 'MIT',
keywords = 'gis gdal numpy',
url = '',
long_description = open('README.rst').read(),
packages = ['agoodle'],
#install_requires = ['setuptools', 'numpy', 'gdal', 'matplotlib'],
tests_require = ['nose'],
test_suite = 'nose.collector',
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS'
],
)