-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (31 loc) · 741 Bytes
/
setup.py
File metadata and controls
31 lines (31 loc) · 741 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
from distutils.core import setup
setup(
name = 'imagebox',
packages = ['imagebox'],
version = '0.0.0.21',
description = 'ImageBox: python utilities for working with multispectral imagery',
author = 'Brookie Guzder-Williams',
author_email = 'brook.williams@gmail.com',
url = 'https://github.com/brookisme/imagebox',
download_url = 'https://github.com/brookisme/imagebox/tarball/0.1',
keywords = ['python','geotiff','rasterio','image','io'],
include_package_data=True,
data_files=[
(
'config',[]
)
],
install_requires=[
'numpy',
'rasterio',
'pyyaml',
'affine',
'rasterio',
'gcs_helpers>=0.0.0.22'
],
classifiers = [],
entry_points={
'console_scripts': [
]
}
)