Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

installation: workflow engine options #176

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,16 @@
'sphinx-click>=1.0.4',
],
'tests': tests_require,
'yadage': [
'pyOpenSSL==17.3.0',
'rfc3987==1.3.7',
'strict-rfc3339==0.7',
'webcolors==1.7',
'yadage-schemas==0.7.16',
],
'cwl': [
'cwltool==1.0.20180326152342',
],
}

extras_require['all'] = []
Expand All @@ -67,16 +77,12 @@
install_requires = [
'bravado>=9.0.6,<10.2',
'click>=6.7,<6.8',
'cwltool==1.0.20180326152342',
'pyOpenSSL==17.3.0', # FIXME remove once yadage-schemas solves deps.
'reana-commons>=0.3.1,<0.4',
'rfc3987==1.3.7', # FIXME remove once yadage-schemas solves deps.
'strict-rfc3339==0.7', # FIXME remove once yadage-schemas solves deps.
'tablib>=0.12.1,<0.13',
'webcolors==1.7', # FIXME remove once yadage-schemas solves deps.
'yadage-schemas==0.7.16',
]

# install_requires += extras_require['yadage'] + extras_require['cwl']
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should probably uncomment it for now to support all the workflow engines we have... Otherwise we would have to loudly specify pip install reana-client[yadage,cwl] everywhere

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shall we uncomment this and rebase? Seems to be ready


packages = find_packages()


Expand Down