Skip to content
Snippets Groups Projects
Commit 9e874b1a authored by Nathan Hertz's avatar Nathan Hertz
Browse files

Added setup.py, README, and a test capability file

parent 5a3fbf96
No related branches found
No related tags found
No related merge requests found
# Workspaces Capability Service
......@@ -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.monitor:main']
'console_scripts': ['cap_launcher = capability.capability_launcher:main']
},
)
null 2
prepare-and-run-workflow null
await-parameter qa-status
\ 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