flowbook-python 0.0.1__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.
flowbook/__init__.py ADDED
@@ -0,0 +1,31 @@
1
+ """
2
+ flowbook-python: Placeholder package for PyPI name reservation.
3
+
4
+ This is a placeholder package to reserve the 'flowbook-python' name on PyPI.
5
+ The actual FlowBook project is under active development.
6
+
7
+ For more information, visit: https://github.com/stephenfreund/FlowBook
8
+ """
9
+
10
+ __version__ = "0.0.1"
11
+
12
+ __all__ = ["__version__"]
13
+
14
+
15
+ def main():
16
+ """Placeholder function that provides information about the package."""
17
+ print("=" * 60)
18
+ print("flowbook-python - Placeholder Package")
19
+ print("=" * 60)
20
+ print()
21
+ print("This is a placeholder package to reserve the PyPI name.")
22
+ print("The actual FlowBook project is under development.")
23
+ print()
24
+ print("For more information:")
25
+ print(" GitHub: https://github.com/stephenfreund/FlowBook")
26
+ print()
27
+ print("=" * 60)
28
+
29
+
30
+ if __name__ == "__main__":
31
+ main()
@@ -0,0 +1,61 @@
1
+ Metadata-Version: 2.4
2
+ Name: flowbook-python
3
+ Version: 0.0.1
4
+ Summary: FlowBook!
5
+ Project-URL: Homepage, https://github.com/stephenfreund/FlowBook
6
+ Project-URL: Repository, https://github.com/stephenfreund/FlowBook
7
+ Author-email: Stephen Freund <sfreund@williams.edu>
8
+ License: BSD 3-Clause License
9
+
10
+ Copyright (c) 2025, Stephen Freund
11
+ All rights reserved.
12
+
13
+ Redistribution and use in source and binary forms, with or without
14
+ modification, are permitted provided that the following conditions are met:
15
+
16
+ 1. Redistributions of source code must retain the above copyright notice, this
17
+ list of conditions and the following disclaimer.
18
+
19
+ 2. Redistributions in binary form must reproduce the above copyright notice,
20
+ this list of conditions and the following disclaimer in the documentation
21
+ and/or other materials provided with the distribution.
22
+
23
+ 3. Neither the name of the copyright holder nor the names of its
24
+ contributors may be used to endorse or promote products derived from
25
+ this software without specific prior written permission.
26
+
27
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
28
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
30
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
31
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
33
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
34
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
35
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37
+ License-File: LICENSE
38
+ Classifier: Development Status :: 2 - Pre-Alpha
39
+ Classifier: Intended Audience :: Developers
40
+ Classifier: License :: OSI Approved :: BSD License
41
+ Classifier: Programming Language :: Python :: 3
42
+ Classifier: Programming Language :: Python :: 3.8
43
+ Classifier: Programming Language :: Python :: 3.9
44
+ Classifier: Programming Language :: Python :: 3.10
45
+ Classifier: Programming Language :: Python :: 3.11
46
+ Classifier: Programming Language :: Python :: 3.12
47
+ Classifier: Programming Language :: Python :: 3.13
48
+ Requires-Python: >=3.8
49
+ Description-Content-Type: text/markdown
50
+
51
+ # flowbook-python
52
+
53
+ ## Installation
54
+
55
+ ```bash
56
+ pip install flowbook-python
57
+ ```
58
+
59
+ ## License
60
+
61
+ BSD 3-Clause License - See LICENSE file for details.
@@ -0,0 +1,5 @@
1
+ flowbook/__init__.py,sha256=IvLKq4OgSBiO6iHqq7QmC3XE-wrldm45li6wSHj6TiQ,838
2
+ flowbook_python-0.0.1.dist-info/METADATA,sha256=HaIiyOcAuStQ9HioS15kGyU2q6YLTTFBVuUVKnLECY4,2740
3
+ flowbook_python-0.0.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
4
+ flowbook_python-0.0.1.dist-info/licenses/LICENSE,sha256=vzQ5CiRavPNATuWPTc47miSh54LsYzpmUTyej6JVDd4,1522
5
+ flowbook_python-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,29 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2025, Stephen Freund
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ 1. Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ 3. Neither the name of the copyright holder nor the names of its
17
+ contributors may be used to endorse or promote products derived from
18
+ this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.