tablem 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.
- tablem-0.0.1/.gitignore +27 -0
- tablem-0.0.1/PKG-INFO +15 -0
- tablem-0.0.1/README.md +4 -0
- tablem-0.0.1/pyproject.toml +16 -0
- tablem-0.0.1/src/tablem/__init__.py +2 -0
tablem-0.0.1/.gitignore
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Credentials and local state — never committed.
|
|
2
|
+
# prototype/.gitignore also applies to its own subtree; these are the root-level rules.
|
|
3
|
+
.env
|
|
4
|
+
.env.*
|
|
5
|
+
!.env.example
|
|
6
|
+
**/secrets/
|
|
7
|
+
*.pem
|
|
8
|
+
*.key
|
|
9
|
+
|
|
10
|
+
# Local tooling and caches
|
|
11
|
+
**/venv/
|
|
12
|
+
**/.venv/
|
|
13
|
+
**/__pycache__/
|
|
14
|
+
*.pyc
|
|
15
|
+
.pytest_cache/
|
|
16
|
+
**/node_modules/
|
|
17
|
+
|
|
18
|
+
# Large binaries fetched by scripts, not source
|
|
19
|
+
prototype/bin/
|
|
20
|
+
|
|
21
|
+
# Local data and scratch
|
|
22
|
+
*.duckdb
|
|
23
|
+
**/tmp/
|
|
24
|
+
.DS_Store
|
|
25
|
+
|
|
26
|
+
# Local agent/session state, not project content
|
|
27
|
+
.claude/
|
tablem-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: tablem
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved for Tablemere, the European-operated Apache Iceberg lakehouse for agents. Real releases will appear here.
|
|
5
|
+
Project-URL: Homepage, https://tablemere.eu
|
|
6
|
+
Author: Tablemere
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# tablem
|
|
13
|
+
|
|
14
|
+
This name is reserved for **Tablemere** (https://tablemere.eu), a European-operated Apache Iceberg
|
|
15
|
+
lakehouse built for agents. Nothing to install yet; real releases will be published under this name.
|
tablem-0.0.1/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tablem"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved for Tablemere, the European-operated Apache Iceberg lakehouse for agents. Real releases will appear here."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "Apache-2.0"
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [{ name = "Tablemere" }]
|
|
13
|
+
classifiers = ["Development Status :: 1 - Planning"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://tablemere.eu"
|