We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 508dce7 commit 1a157d4Copy full SHA for 1a157d4
setup.py
@@ -26,10 +26,9 @@
26
'cwltool',
27
]
28
29
-# Latest stable bioblend does not support Python 3, setup dev dependency.
30
-dependency_links = []
31
-if sys.version_info[0] != 2:
32
- dependency_links = ['git://github.com/galaxyproject/bioblend#egg=bioblend']
+# Only import cwltool for Python 2.
+if sys.version_info[0] == 2:
+ requirements.append("cwltool")
33
34
35
test_requirements = [
@@ -91,7 +90,6 @@
91
90
'planemo_ext': 'planemo_ext'},
92
include_package_data=True,
93
install_requires=requirements,
94
- dependency_links=dependency_links,
95
license="AFL",
96
zip_safe=False,
97
keywords='planemo',
0 commit comments