forked from remotesensinginfo/arcsi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (57 loc) · 3.09 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python
"""
Setup script for ARCSI. Use like this for Unix:
$ python setup.py install
"""
# This file is part of 'ARCSI' - Atmospheric and Radiometric Correction of Satellite Imagery
# Copyright (C) 2013 Pete Bunting
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with ARCSI. If not, see <http://www.gnu.org/licenses/>.
#
#
# Purpose: Installation of the ARCSI software
#
# Author: Pete Bunting
# Email: pfb@aber.ac.uk
# Date: 27/08/2013
# Version: 1.0
#
# History:
# Version 1.0 - Created.
from distutils.core import setup
import os
setup(name='ARCSI',
version='3.9.1',
description='Atmospheric and Radiometric Correction of Satellite Imagery',
author='Pete Bunting and Dan Clewley',
author_email='pfb@aber.ac.uk, daniel.clewley@gmail.com',
scripts=['bin/arcsi.py', 'bin/arcsimpi.py', 'bin/arcsisolarirradiance.py', 'bin/arcsispecresponsefuncs.py', 'bin/arcsiextractdata.py', 'bin/arcsibuildcmdslist.py', 'bin/arcsisortlandsat.py', 'bin/arcsiextractroistats.py', 'bin/arcsiplotextractedstats.py', 'bin/arcsibuildextractfilecmds.py', 'bin/arcsibuildfilenameslu.py', 'bin/arcsifindnotprocessed.py', 'bin/arcsiremoveduplicates.py', 'bin/arcsicheckfilespresent.py', 'bin/arcsiarchivesnotextracted.py', 'bin/arcsicreatepy6scall.py', 'bin/arcsisplitsen2granules.py', 'bin/arcsisetupsen2db.py', 'bin/arcsigensen2downlst.py', 'bin/arcsisetuplandsatdb.py', 'bin/arcsigenlandsatdownlst.py', 'bin/arcsidwnldgoog.py', 'bin/arcsibuildmultifilelists.py', 'bin/arcsichecksen2ver.py', 'bin/arcsidwndem.py', 'bin/arcsifindlsscn.py'],
packages=['arcsilib', 'arcsilib/s2cloudless'],
package_dir={'arcsilib': 'arcsilib', 'arcsilib/s2cloudless': 'arcsilib/s2cloudless'},
data_files=[(os.path.join('share','arcsi'),
[os.path.join('data','WorldAerosolParams.kea'),
os.path.join('data','WorldAtmosphereParams.kea'),
os.path.join('data','pixel_s2_cloud_detector_lightGBM_v0.1.txt')])],
license='LICENSE.txt',
url='https://bitbucket.org/petebunting/arcsi',
classifiers=['Intended Audience :: Developers',
'Intended Audience :: Remote Sensing Scientists',
'Intended Audience :: Atmospheric Scientists',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
'Programming Language :: Python :: 3.8'])