Metadata-Version: 2.4
Name: datalakehouse
Version: 0.0.1
Summary: Reserved name for a forthcoming lakehouse toolkit by RODMENA LIMITED (placeholder release, no functionality yet)
Author-email: RODMENA LIMITED <contact@rodmena.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://rodmena.co.uk
Keywords: lakehouse,data-lake,placeholder,reserved
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Database
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: build>=1.0; extra == "dev"
Requires-Dist: twine>=5.0; extra == "dev"
Dynamic: license-file

# datalakehouse

**Status: reserved name — this release does nothing yet.**

`datalakehouse` on PyPI is held by [RODMENA LIMITED](https://rodmena.co.uk)
for a forthcoming lakehouse toolkit. Version `0.0.1` is a placeholder: it
installs, it imports, and that is the whole of it.

It deliberately has:

- no third-party runtime dependencies,
- no import-time I/O (no network, no filesystem writes),
- no stubbed API that silently returns `None`.

```python
>>> import datalakehouse
>>> datalakehouse.__version__
'0.0.1'
>>> datalakehouse.info()["status"]
'reserved'
>>> datalakehouse.Table
Traceback (most recent call last):
    ...
AttributeError: module 'datalakehouse' has no attribute 'Table': release 0.0.1
reserves the name on PyPI and ships no functionality yet. ...
```

Anything not listed in `__all__` raises `AttributeError` with an explanation,
so this package cannot be mistaken for a working library.

## Licence

Apache-2.0. See [LICENSE](LICENSE).
