plans 1.1.0.post1.dev0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
plans/__init__.py ADDED
@@ -0,0 +1,41 @@
1
+ # SPDX-License-Identifier: GPL-3.0-or-later
2
+ #
3
+ # Copyright (C) 2025 The Project Authors
4
+ # See pyproject.toml for authors/maintainers.
5
+ # See LICENSE for license details.
6
+ """
7
+ {Short package description (1-3 sentences)}
8
+ todo docstring
9
+
10
+ Features
11
+ --------
12
+ todo docstring
13
+
14
+ * {feature 1}
15
+ * {feature 2}
16
+ * {feature 3}
17
+ * {etc}
18
+
19
+ Overview
20
+ --------
21
+ todo docstring
22
+ {Overview description}
23
+
24
+ Examples
25
+ --------
26
+ todo docstring
27
+ {Examples in rST}
28
+
29
+ Print a message
30
+
31
+ .. code-block:: python
32
+
33
+ # print message
34
+ print("Hello world!")
35
+ # [Output] >> 'Hello world!'
36
+
37
+
38
+ """
39
+ # EXPOSE MODULES FROM PACKAGE
40
+ # ***********************************************************************
41
+ from plans.project import Project, new_project, load_project