-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (26 loc) · 870 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
#!/usr/bin/env python
from setuptools import setup
setup(
# Application name:
name='download_espa_order',
# Version number:
version='2.1.0',
# Application author details:
author='David V. Hill',
license=open('LICENSE.txt').read(),
description='Client for downloading ESPA scenes.',
long_description=open('README.md').read(),
classifiers = [
'Programming Language :: Python',
'Programming Langauge :: Python :: 2.7',
'Programming Langauge :: Python :: 3.x',
'Topic :: Scientific/Engineering :: GIS'
],
# Scripts
# Moves the script to the user's bin directory so that it can be executed.
# Usage is 'download_espa_order.py' not 'python download_espa_order.py'
scripts=['download_espa_order.py'],
# Dependent packages (distributions)
install_requires=[
],
)