Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
workspaces
Commits
9e874b1a
Commit
9e874b1a
authored
4 years ago
by
Nathan Hertz
Browse files
Options
Downloads
Patches
Plain Diff
Added setup.py, README, and a test capability file
parent
5a3fbf96
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
services/capability/README.md
+1
-0
1 addition, 0 deletions
services/capability/README.md
services/capability/setup.py
+6
-12
6 additions, 12 deletions
services/capability/setup.py
services/capability/test/null.cap
+2
-0
2 additions, 0 deletions
services/capability/test/null.cap
with
9 additions
and
12 deletions
services/capability/README.md
+
1
−
0
View file @
9e874b1a
# Workspaces Capability Service
This diff is collapsed.
Click to expand it.
services/capability/setup.py
+
6
−
12
View file @
9e874b1a
...
...
@@ -4,38 +4,32 @@
from
pathlib
import
Path
from
setuptools
import
setup
VERSION
=
open
(
'
src/
wf_monitor
/_version.py
'
).
readlines
()[
-
1
].
split
()[
-
1
].
strip
(
"
\"
'"
)
VERSION
=
open
(
'
src/
capability
/_version.py
'
).
readlines
()[
-
1
].
split
()[
-
1
].
strip
(
"
\"
'"
)
README
=
Path
(
'
README.md
'
).
read_text
()
requires
=
[
'
pika==1.1
'
,
'
pendulum==2.1.2
'
,
'
ssa-workspaces
'
,
'
ssa-channels
'
]
tests_require
=
[
'
pytest>=5.4,<6.0
'
,
'
pytest-mock==3.3.1
'
,
]
# tests_require = []
setup
(
name
=
'
ssa-
'
+
Path
().
absolute
().
name
,
version
=
VERSION
,
description
=
'
Workflow monitor that reads in HTCondor logs and translates them into AMQP events
'
,
description
=
'
The Workspaces capability service
'
,
long_description
=
README
,
author
=
'
NRAO SSA Team
'
,
author_email
=
'
dms-ssa@nrao.edu
'
,
url
=
'
TBD
'
,
license
=
"
GPL
"
,
install_requires
=
requires
,
tests_require
=
tests_require
,
#
tests_require=tests_require,
keywords
=
[],
packages
=
[
'
wf_monitor
'
],
packages
=
[
'
capability
'
],
package_dir
=
{
''
:
'
src
'
},
classifiers
=
[
'
Programming Language :: Python :: 3.8
'
],
entry_points
=
{
'
console_scripts
'
:
[
'
wf_monitor = wf_monitor.monito
r:main
'
]
'
console_scripts
'
:
[
'
cap_launcher = capability.capability_launche
r:main
'
]
},
)
This diff is collapsed.
Click to expand it.
services/capability/test/null.cap
+
2
−
0
View file @
9e874b1a
null 2
prepare-and-run-workflow null
await-parameter qa-status
\ No newline at end of file
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