forked from lanl/dbprocessing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.98 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.98 KB
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
#!/usr/bin/env python
"""Setup script for dbprocessing"""
__author__ = 'Brian Larsen <balarsen@lanl.gov>'
__version__ = '0.0'
from distutils.core import setup
scripts = ('scripts/addFromConfig.py', 'scripts/missingFilesByProduct.py',
'scripts/addVerboseProvenance.py', 'scripts/missingFiles.py',
'scripts/clearProcessingFlag.py', 'scripts/possibleProblemDates.py',
'scripts/configFromDB.py', 'scripts/printInfo.py',
'scripts/coveragePlot.py', 'scripts/printProcessQueue.py',
'scripts/CreateDB.py', 'scripts/ProcessQueue.py',
'scripts/dataToIncoming.py', 'scripts/purgeFileFromDB.py',
'scripts/dbOnlyFiles.py', 'scripts/QCEmailer_conf.txt',
'scripts/DBRunner.py',
'scripts/deleteAllDBFiles.py', 'scripts/reprocessByCode.py',
'scripts/deleteAllDBProducts.py', 'scripts/reprocessByDate.py',
'scripts/flushProcessQueue.py', 'scripts/reprocessByInstrument.py',
'scripts/histogramCodes.py', 'scripts/reprocessByProduct.py',
'scripts/hopeCoverageHTML.py', 'scripts/updateCode.py',
'scripts/hope_query.py', 'scripts/updateProducts.py',
'scripts/htmlCoverage.py', 'scripts/updateSHAsum.py',
'scripts/link_missing_ql_mag_l2_mag.py', 'scripts/weeklyReport.py',
'scripts/magephem_dataToIncoming.py', 'scripts/writeDBhtml.py',
'scripts/magephem_def_dataToIncoming.py', 'scripts/writeProcessConf.py',
'scripts/magephem-pre-CoverageHTML.py', 'scripts/writeProductsConf.py',
'scripts/makeLatestSymlinks.py', 'scripts/testInspector.py',
'scripts/replaceArgsWithRootdir.py', 'scripts/printRequired.py',
'scripts/changeProductDir.py')
setup(name='dbprocessing',
version='0.0',
description='RBSP database file processing',
author='Brian Larsen',
author_email='balarsen@lanl.gov',
packages=['dbprocessing'],
provides=['dbprocessing'],
scripts=scripts
)