-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (33 loc) · 1018 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/python
# Copyright (c) 2010 Nick Thompson
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='mapsaw',
version='0.2',
author='Nick Thompson',
author_email='nix@nixweb.com',
maintainer_email='nix@nixweb.com',
license='private',
url='http://nixweb.com',
description='Utilities for creating maps in Python',
long_description="""Utilities for creating maps in Python, based around
GDAL, Mapnik, Numpy, Scipy.ndimage.""",
packages=['mapsaw'],
scripts=[],
# this should be some other var
#xxx_package_xxx = {'mapsaw.data': '*.txt'},
# cause this isnt right
include_package_data = True,
install_requires=[
'python-dateutil',
# numpy, scipy.ndimage, mapnik, osgeo, pyproj
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console'
],
)