Skip to content
Snippets Groups Projects
Commit 480d7866 authored by David Hoese's avatar David Hoese
Browse files

initial setup for luigi task testing

parent fed5dfcf
No related branches found
No related tags found
No related merge requests found
...@@ -10,10 +10,11 @@ with open(os.path.join(here, 'CHANGES.txt')) as f: ...@@ -10,10 +10,11 @@ with open(os.path.join(here, 'CHANGES.txt')) as f:
requires = [ requires = [
"sh", "sh",
"luigi",
] ]
setup(name='sparchive', setup(name='sparchive',
version='0.1', version='0.2',
description='Software for managing the archival process for SPARC instrument data on SSEC servers', description='Software for managing the archival process for SPARC instrument data on SSEC servers',
long_description=README + '\n\n' + CHANGES, long_description=README + '\n\n' + CHANGES,
classifiers=[ classifiers=[
......
#!/usr/bin/env python
# encoding: utf-8
"""This module is used to hold various tasks for completing SPARC related processing.
As development continues this module may get split into more modules or task objects
may get placed next to the code that they use, but for now we keep it separate for
testing.
"""
__docformat__ = "restructuredtext en"
import os
import sys
import logging
import luigi
LOG = logging.getLogger(__name__)
def main():
from argparse import ArgumentParser
parser = ArgumentParser()
args = parser.parse_known_args()
if __name__ == "__main__":
sys.exit(main())
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment