-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (27 loc) · 840 Bytes
/
setup.py
File metadata and controls
34 lines (27 loc) · 840 Bytes
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
"""
Setup Script
"""
import os
import platform
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from shutil import copyfile
INSTALL_REQUIRES = [
'scipy', 'pandas', 'shapely', 'fiona', 'pyproj', 'geopandas',
'georasters', 'psutil', 'requests', 'bs4', 'gdal', 'numpy'
]
LONG_DESCRIPTION = ""
setup(name='beatbox',
version=0.2,
description='shell scriptable exposure to ndimage and other tools for big raster processing and spatial analyses',
license='GPL v.3',
author=['Kyle Taylor','Alex Daniels','Meghan Mogearts'],
author_email='kyle.taylor@pljv.org',
url='http://pljv.org/about',
long_description=LONG_DESCRIPTION,
packages=['beatbox'],
install_requires=INSTALL_REQUIRES,
scripts=['scripts/gdal_moving_windows.py']
)