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 +9 -0
- foro-0.1.0/PKG-INFO +25 -0
- foro-0.1.0/README.md +10 -0
- foro-0.1.0/pyproject.toml +29 -0
- foro-0.1.0/src/foro/__init__.py +2 -0
- foro-0.1.0/tests/test_smoke.py +5 -0
foro-0.1.0/.gitignore
ADDED
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,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"]
|