foral 0.0.1__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.
- foral-0.0.1/.gitignore +19 -0
- foral-0.0.1/PKG-INFO +18 -0
- foral-0.0.1/README.md +8 -0
- foral-0.0.1/pyproject.toml +18 -0
- foral-0.0.1/src/foral/__init__.py +4 -0
foral-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# segredos e dados de cliente — NUNCA versionar
|
|
2
|
+
.env
|
|
3
|
+
.env.*
|
|
4
|
+
# …mas o TEMPLATE (sem segredo) é documentação e versiona (pego em 28/08: o padrão
|
|
5
|
+
# `.env.*` engolia o .env.example e ele ficou fora do commit inicial sem ninguém ver)
|
|
6
|
+
!.env.example
|
|
7
|
+
sessions/
|
|
8
|
+
audit_logs/
|
|
9
|
+
*.log
|
|
10
|
+
nohup.out
|
|
11
|
+
.venv/
|
|
12
|
+
__pycache__/
|
|
13
|
+
*.pyc
|
|
14
|
+
.pytest_cache/
|
|
15
|
+
graphify-out/
|
|
16
|
+
|
|
17
|
+
# cofre: T1 aberto NUNCA entra em git (o fechar limpa; isto é a trava)
|
|
18
|
+
cofre/*.md
|
|
19
|
+
!cofre/README.md
|
foral-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: foral
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Foral — charters for software without public APIs. Coming soon: https://foral.dev
|
|
5
|
+
Project-URL: Homepage, https://foral.dev
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Keywords: agents,contracts,integration,mcp
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# Foral
|
|
12
|
+
|
|
13
|
+
**Charters for software without public APIs** — turn the systems your company already
|
|
14
|
+
runs into governed, typed capabilities for AI agents.
|
|
15
|
+
|
|
16
|
+
Coming soon: **https://foral.dev**
|
|
17
|
+
|
|
18
|
+
*This package name is reserved by the Foral team.*
|
foral-0.0.1/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "foral"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Foral — charters for software without public APIs. Coming soon: https://foral.dev"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = { text = "Proprietary" }
|
|
12
|
+
keywords = ["mcp", "agents", "integration", "contracts"]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://foral.dev"
|
|
16
|
+
|
|
17
|
+
[tool.hatch.build.targets.wheel]
|
|
18
|
+
packages = ["src/foral"]
|