fluvo 0.0.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.
- fluvo-0.0.0/PKG-INFO +17 -0
- fluvo-0.0.0/README.md +6 -0
- fluvo-0.0.0/pyproject.toml +19 -0
- fluvo-0.0.0/src/fluvo/__init__.py +6 -0
fluvo-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fluvo
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Fast data into Odoo — high-performance Polars-backed ETL (name reservation placeholder).
|
|
5
|
+
Project-URL: Homepage, https://github.com/getfluvo/fluvo
|
|
6
|
+
Author: Strategic Efficiency B.V.
|
|
7
|
+
License-Expression: LGPL-3.0-only
|
|
8
|
+
Keywords: data,etl,import,odoo,polars
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# Fluvo
|
|
13
|
+
|
|
14
|
+
**Fast data into Odoo** — a high-performance, Polars-backed ETL engine and the modern
|
|
15
|
+
successor to `odoo_csv_import`.
|
|
16
|
+
|
|
17
|
+
> 🚧 This `0.0.0` release only reserves the name on PyPI. The real package is on its way.
|
fluvo-0.0.0/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "fluvo"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Fast data into Odoo — high-performance Polars-backed ETL (name reservation placeholder)."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "LGPL-3.0-only"
|
|
12
|
+
authors = [{ name = "Strategic Efficiency B.V." }]
|
|
13
|
+
keywords = ["odoo", "etl", "polars", "data", "import"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://github.com/getfluvo/fluvo"
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["src/fluvo"]
|