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
29adc6fe
Commit
29adc6fe
authored
7 years ago
by
acpaquette
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #44 from jlaura/binscripts
Adds setup.py bin script deploy
parents
e2fbdf2e
4573d0fa
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show 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 @
29adc6fe
#!/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 @
29adc6fe
...
@@ -36,6 +36,7 @@ def setup_package():
...
@@ -36,6 +36,7 @@ def setup_package():
package_data
=
{
'
plio
'
:
list
(
examples
)
+
[
'
data/*.db
'
,
'
data/*.py
'
]
+
\
package_data
=
{
'
plio
'
:
list
(
examples
)
+
[
'
data/*.db
'
,
'
data/*.py
'
]
+
\
[
'
sqlalchemy_json/*.py
'
,
'
sqlalchemy_json/LICENSE
'
]},
[
'
sqlalchemy_json/*.py
'
,
'
sqlalchemy_json/LICENSE
'
]},
zip_safe
=
False
,
zip_safe
=
False
,
scripts
=
[
'
bin/socet2isis
'
],
install_requires
=
[
install_requires
=
[
'
gdal
'
,
'
gdal
'
,
'
numpy
'
,
'
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