foro 0.1.0__tar.gz

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.
foro-0.1.0/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ node_modules/
2
+ dist/
3
+ build/
4
+ *.egg-info/
5
+ .venv/
6
+ .pytest_cache/
7
+ __pycache__/
8
+ *.py[cod]
9
+ .DS_Store
foro-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: foro
3
+ Version: 0.1.0
4
+ Summary: Python SDK for Foro
5
+ Project-URL: Homepage, https://github.com/foro-sh/foro
6
+ Project-URL: Repository, https://github.com/foro-sh/foro
7
+ Project-URL: Issues, https://github.com/foro-sh/foro/issues
8
+ Author: Foro
9
+ License: MIT
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.10
14
+ Description-Content-Type: text/markdown
15
+
16
+ # Foro Python SDK
17
+
18
+ This package is the Python SDK for Foro.
19
+
20
+ ## Development
21
+
22
+ ```bash
23
+ uv sync
24
+ uv run python -m pytest
25
+ ```
foro-0.1.0/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # Foro Python SDK
2
+
3
+ This package is the Python SDK for Foro.
4
+
5
+ ## Development
6
+
7
+ ```bash
8
+ uv sync
9
+ uv run python -m pytest
10
+ ```
@@ -0,0 +1,29 @@
1
+ [project]
2
+ name = "foro"
3
+ version = "0.1.0"
4
+ description = "Python SDK for Foro"
5
+ readme = "README.md"
6
+ requires-python = ">=3.10"
7
+ dependencies = []
8
+ authors = [{ name = "Foro" }]
9
+ license = { text = "MIT" }
10
+ classifiers = [
11
+ "Programming Language :: Python :: 3",
12
+ "License :: OSI Approved :: MIT License",
13
+ "Operating System :: OS Independent"
14
+ ]
15
+
16
+ [project.urls]
17
+ Homepage = "https://github.com/foro-sh/foro"
18
+ Repository = "https://github.com/foro-sh/foro"
19
+ Issues = "https://github.com/foro-sh/foro/issues"
20
+
21
+ [build-system]
22
+ requires = ["hatchling"]
23
+ build-backend = "hatchling.build"
24
+
25
+ [tool.hatch.build.targets.wheel]
26
+ packages = ["src/foro"]
27
+
28
+ [tool.uv]
29
+ dev-dependencies = ["pytest>=8.0"]
@@ -0,0 +1,2 @@
1
+ def hello_foro(name: str = "world") -> str:
2
+ return f"Hello, {name} from Foro"
@@ -0,0 +1,5 @@
1
+ from foro import hello_foro
2
+
3
+
4
+ def test_smoke():
5
+ assert hello_foro("test") == "Hello, test from Foro"