Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Plio
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
aflab
astrogeology
Plio
Commits
4573d0fa
Commit
4573d0fa
authored
6 years ago
by
Jay
Browse files
Options
Downloads
Patches
Plain Diff
Adds setup.py bin script deploy
parent
e2fbdf2e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bin/socet2isis
+15
-0
15 additions, 0 deletions
bin/socet2isis
setup.py
+1
-0
1 addition, 0 deletions
setup.py
with
16 additions
and
0 deletions
bin/socet2isis
0 → 100644
+
15
−
0
View file @
4573d0fa
#!/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
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
0
View file @
4573d0fa
...
...
@@ -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
'
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment