-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (35 loc) · 1.1 KB
/
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
"""espatools: an open-source python package for Landsat raster file I/O
"""
import setuptools
__version__ = '0.1.1'
with open("README.rst", "r") as f:
long_description = f.read()
setuptools.setup(
name="espatools",
version=__version__,
author="Bane Sullivan",
author_email="[email protected]",
description="Landsat raster file I/O",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/OpenGeoVis/espatools",
packages=setuptools.find_packages(),
install_requires=[
'numpy>=1.10',
'scipy>=1.1',
'pillow>=5.2.0',
'xmltodict>=0.11.0',
'vectormath>=0.2.0',
'properties>=0.4.0',
],
classifiers=(
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Scientific/Engineering :: GIS',
'Intended Audience :: Science/Research',
'Natural Language :: English',
),
)