erpl-dlt 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.
- erpl_dlt-0.1.0/.github/workflows/release.yml +57 -0
- erpl_dlt-0.1.0/.gitignore +18 -0
- erpl_dlt-0.1.0/.muse-delegate/context/prompt_review_20260913_140825.md +3029 -0
- erpl_dlt-0.1.0/.muse-delegate/context/prompt_review_20260913_140844.md +332 -0
- erpl_dlt-0.1.0/.muse-delegate/delegation_log.md +18 -0
- erpl_dlt-0.1.0/.muse-delegate/sessions/responses/events_review_20260913_140825.jsonl +23 -0
- erpl_dlt-0.1.0/.muse-delegate/sessions/responses/events_review_20260913_140844.jsonl +23 -0
- erpl_dlt-0.1.0/.muse-delegate/sessions/responses/review_20260913_140825.md +0 -0
- erpl_dlt-0.1.0/.muse-delegate/sessions/responses/review_20260913_140844.md +0 -0
- erpl_dlt-0.1.0/NOTES.md +140 -0
- erpl_dlt-0.1.0/NOTICE +17 -0
- erpl_dlt-0.1.0/PKG-INFO +131 -0
- erpl_dlt-0.1.0/PLAN.md +195 -0
- erpl_dlt-0.1.0/README.md +104 -0
- erpl_dlt-0.1.0/erpl_dlt/__init__.py +34 -0
- erpl_dlt-0.1.0/erpl_dlt/bics.py +175 -0
- erpl_dlt-0.1.0/erpl_dlt/config.py +140 -0
- erpl_dlt-0.1.0/erpl_dlt/connection.py +212 -0
- erpl_dlt-0.1.0/erpl_dlt/invoke.py +186 -0
- erpl_dlt-0.1.0/erpl_dlt/odata.py +123 -0
- erpl_dlt-0.1.0/erpl_dlt/odp.py +367 -0
- erpl_dlt-0.1.0/erpl_dlt/query.py +260 -0
- erpl_dlt-0.1.0/erpl_dlt/rfc.py +133 -0
- erpl_dlt-0.1.0/erpl_dlt/settings.py +38 -0
- erpl_dlt-0.1.0/examples/odata_pipeline.py +36 -0
- erpl_dlt-0.1.0/examples/rfc_pipeline.py +44 -0
- erpl_dlt-0.1.0/justfile +26 -0
- erpl_dlt-0.1.0/pyproject.toml +56 -0
- erpl_dlt-0.1.0/tests/conftest.py +40 -0
- erpl_dlt-0.1.0/tests/test_bapi_return_handling.py +86 -0
- erpl_dlt-0.1.0/tests/test_generated_sql_parses.py +116 -0
- erpl_dlt-0.1.0/tests/test_integration_bics.py +76 -0
- erpl_dlt-0.1.0/tests/test_integration_invoke.py +76 -0
- erpl_dlt-0.1.0/tests/test_integration_odp.py +102 -0
- erpl_dlt-0.1.0/tests/test_integration_rfc.py +219 -0
- erpl_dlt-0.1.0/tests/test_odp_and_bics.py +211 -0
- erpl_dlt-0.1.0/tests/test_query_building.py +107 -0
- erpl_dlt-0.1.0/tests/test_secrets_never_reach_sql.py +59 -0
- erpl_dlt-0.1.0/tests/test_write_disposition_and_names.py +145 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
push:
|
|
6
|
+
tags: ['v*']
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: read
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
build:
|
|
13
|
+
name: Build package
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
|
+
|
|
18
|
+
- uses: actions/setup-python@v5
|
|
19
|
+
with:
|
|
20
|
+
python-version: "3.12"
|
|
21
|
+
|
|
22
|
+
- name: Install dependencies
|
|
23
|
+
run: |
|
|
24
|
+
pip install --upgrade pip
|
|
25
|
+
pip install -e ".[dev]" build
|
|
26
|
+
|
|
27
|
+
- name: Lint and unit test
|
|
28
|
+
run: |
|
|
29
|
+
ruff check erpl_dlt tests
|
|
30
|
+
ruff format --check erpl_dlt tests
|
|
31
|
+
mypy
|
|
32
|
+
pytest tests -q -m "not integration"
|
|
33
|
+
|
|
34
|
+
- name: Build wheel and sdist
|
|
35
|
+
run: python -m build
|
|
36
|
+
|
|
37
|
+
- uses: actions/upload-artifact@v4
|
|
38
|
+
with:
|
|
39
|
+
name: dist
|
|
40
|
+
path: dist/*
|
|
41
|
+
|
|
42
|
+
pypi-publish:
|
|
43
|
+
name: Publish to PyPI
|
|
44
|
+
needs: build
|
|
45
|
+
if: startsWith(github.ref, 'refs/tags/v')
|
|
46
|
+
runs-on: ubuntu-latest
|
|
47
|
+
environment:
|
|
48
|
+
name: pypi
|
|
49
|
+
url: https://pypi.org/p/erpl-dlt
|
|
50
|
+
permissions:
|
|
51
|
+
id-token: write # Trusted Publishing: no API token to store or rotate
|
|
52
|
+
steps:
|
|
53
|
+
- uses: actions/download-artifact@v4
|
|
54
|
+
with:
|
|
55
|
+
name: dist
|
|
56
|
+
path: dist
|
|
57
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
.venv/
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.egg-info/
|
|
4
|
+
dist/
|
|
5
|
+
.dlt/
|
|
6
|
+
*.duckdb
|
|
7
|
+
.pytest_cache/
|
|
8
|
+
.mypy_cache/
|
|
9
|
+
.ruff_cache/
|
|
10
|
+
dev_rfc.log
|
|
11
|
+
*.trc
|
|
12
|
+
|
|
13
|
+
# Antigravity delegation data (model responses, context files)
|
|
14
|
+
.antigravity-delegate/
|
|
15
|
+
*.duckdb
|
|
16
|
+
|
|
17
|
+
# Codex delegation data
|
|
18
|
+
.codex-delegate/
|