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.
1 parent 90ca272 commit 0c9e911Copy full SHA for 0c9e911
README.md
@@ -13,6 +13,8 @@ All tasks will be inserted into the `pydra.tasks.<yourtaskpackagename>` namespac
13
1. One of the folders is called TODO. This should also be renamed to your package
14
name.
15
1. Add tasks to the `pydra/tasks/<yourpackagename>` folder.
16
+1. An example subpackage is found in `pydra/tasks/<yourpackagename>/utils`.
17
+ You may wish to add tools to it or delete it.
18
1. You may want to initialize a [Sphinx] docs directory.
19
1. **Update this README after creating the new repository.**
20
pydra/tasks/TODO/utils/__init__.py
@@ -0,0 +1,6 @@
1
+"""
2
+This is a basic doctest demonstrating that subpackags can also be
3
+imported.
4
+
5
+>>> import pydra.tasks.TODO.utils
6
0 commit comments