We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d16e57f + 08ab150 commit f181398Copy full SHA for f181398
docs/api.rst
@@ -13,4 +13,5 @@ Subpackages
13
14
api/pydra.engine
15
api/pydra.mark
16
+ api/pydra.tasks
17
api/pydra.utils
pydra/tasks/__init__.py
@@ -0,0 +1,11 @@
1
+""" Pydra tasks
2
+
3
+The ``pydra.tasks`` namespace is reserved for collections of Tasks, to be managed and
4
+packaged separately.
5
+To create a task package, please fork the `pydra-tasks-template
6
+<https://github.com/nipype/pydra-tasks-template>`__.
7
+"""
8
+try:
9
+ __import__("pkg_resources").declare_namespace(__name__)
10
+except ImportError:
11
+ pass # must not have setuptools
0 commit comments