Skip to content
Snippets Groups Projects
Commit 4573d0fa authored by Jay's avatar Jay
Browse files

Adds setup.py bin script deploy

parent e2fbdf2e
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python
import argparse
def parse_args():
parser = argparse.ArgumentParser()
# Add args here
return parser.parse_args()
def main(args):
print('Getting some work done')
if __name__ == '__main__':
main(parse_args())
\ No newline at end of file
......@@ -36,6 +36,7 @@ def setup_package():
package_data={'plio' : list(examples) + ['data/*.db', 'data/*.py'] +\
['sqlalchemy_json/*.py', 'sqlalchemy_json/LICENSE']},
zip_safe=False,
scripts=['bin/socet2isis'],
install_requires=[
'gdal',
'numpy',
......
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