fruxon 0.1.0__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.
fruxon/__init__.py ADDED
@@ -0,0 +1,4 @@
1
+ """Top-level package for fruxon."""
2
+
3
+ __author__ = """Hagai Cohen"""
4
+ __email__ = 'hagai@fruxon.com'
fruxon/__main__.py ADDED
@@ -0,0 +1,4 @@
1
+ from .cli import app
2
+
3
+ if __name__ == "__main__":
4
+ app()
fruxon/cli.py ADDED
@@ -0,0 +1,22 @@
1
+ """Console script for fruxon."""
2
+
3
+ import typer
4
+ from rich.console import Console
5
+
6
+ from fruxon import utils
7
+
8
+ app = typer.Typer()
9
+ console = Console()
10
+
11
+
12
+ @app.command()
13
+ def main():
14
+ """Console script for fruxon."""
15
+ console.print("Replace this message by putting your code into "
16
+ "fruxon.cli.main")
17
+ console.print("See Typer documentation at https://typer.tiangolo.com/")
18
+ utils.do_something_useful()
19
+
20
+
21
+ if __name__ == "__main__":
22
+ app()
fruxon/fruxon.py ADDED
@@ -0,0 +1 @@
1
+ """Main module."""
fruxon/utils.py ADDED
@@ -0,0 +1,2 @@
1
+ def do_something_useful():
2
+ print("Replace this with a utility function")
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: fruxon
3
+ Version: 0.1.0
4
+ Summary: The Fruxon SDK is a lightweight Python client for integrating with the Fruxon platform.
5
+ Author-email: Hagai Cohen <hagai@fruxon.com>
6
+ Maintainer-email: Hagai Cohen <hagai@fruxon.com>
7
+ License: MIT
8
+ Project-URL: bugs, https://github.com/HagaiCo/fruxon/issues
9
+ Project-URL: changelog, https://github.com/HagaiCo/fruxon/blob/master/changelog.md
10
+ Project-URL: homepage, https://github.com/HagaiCo/fruxon
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+ License-File: LICENSE
14
+ Requires-Dist: typer
15
+ Provides-Extra: test
16
+ Requires-Dist: coverage; extra == "test"
17
+ Requires-Dist: pytest; extra == "test"
18
+ Requires-Dist: ruff; extra == "test"
19
+ Requires-Dist: ty; extra == "test"
20
+ Requires-Dist: ipdb; extra == "test"
21
+ Dynamic: license-file
22
+
23
+ # fruxon
24
+
25
+ ![PyPI version](https://img.shields.io/pypi/v/fruxon.svg)
26
+ [![Documentation Status](https://readthedocs.org/projects/fruxon/badge/?version=latest)](https://fruxon.readthedocs.io/en/latest/?version=latest)
27
+
28
+ The Fruxon SDK is a lightweight Python client for integrating with the Fruxon platform.
29
+
30
+ * PyPI package: https://pypi.org/project/fruxon/
31
+ * Free software: MIT License
32
+ * Documentation: https://fruxon.readthedocs.io.
33
+
34
+ ## Features
35
+
36
+ * TODO
37
+
38
+ ## Credits
39
+
40
+ This package was created with [Cookiecutter](https://github.com/audreyfeldroy/cookiecutter) and the [audreyfeldroy/cookiecutter-pypackage](https://github.com/audreyfeldroy/cookiecutter-pypackage) project template.
@@ -0,0 +1,11 @@
1
+ fruxon/__init__.py,sha256=HSDCUX9HpimJE4AXxe3TPW2ikmt3L10YAAyvVBjNIZ8,99
2
+ fruxon/__main__.py,sha256=Qd-f8z2Q2vpiEP2x6PBFsJrpACWDVxFKQk820MhFmHo,59
3
+ fruxon/cli.py,sha256=iDvkj2k7QLyXT9ea5_UBHAKo_slSvSR0dkH-kGLf8cM,462
4
+ fruxon/fruxon.py,sha256=h0hwdogXGFqerm-5ZPeT-irPn91pCcQRjiHThXsRzEk,19
5
+ fruxon/utils.py,sha256=1RxiNQM7rpegUEPuFvOlbSGesR4gnWpXr82bZQCgELM,77
6
+ fruxon-0.1.0.dist-info/licenses/LICENSE,sha256=LaBiHVBSFp1uzscXdTmBXphmtLZoC4gCKtumKFhKkBw,1069
7
+ fruxon-0.1.0.dist-info/METADATA,sha256=Bbnp6CmgTXFkt6ENhyOXiLycG2N7-YjnzElM_5rqELc,1472
8
+ fruxon-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
9
+ fruxon-0.1.0.dist-info/entry_points.txt,sha256=6gd8zIKLKN-OfQBylJXvPwOTzQTWzEc4rr4M5vBkO2s,42
10
+ fruxon-0.1.0.dist-info/top_level.txt,sha256=mOwxIBUyIx5GUkOAin_b6FavgMNBelp-_MC2BUi2E34,7
11
+ fruxon-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ fruxon = fruxon.cli:app
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025, Hagai Cohen
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ fruxon