klava 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.
klava-0.1.0/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ debug
2
+ target
3
+ .env
4
+ .claude
@@ -0,0 +1,16 @@
1
+ when:
2
+ - event: [deployment, tag]
3
+
4
+ labels:
5
+ platform: linux/amd64
6
+
7
+ steps:
8
+ - name: publish
9
+ image: ghcr.io/pyo3/maturin
10
+ commands:
11
+ - pip install uv
12
+ - maturin build --release --manylinux 2_17 --sdist --out dist
13
+ - uv publish --token ${UV_TOKEN} dist/
14
+ environment:
15
+ UV_TOKEN:
16
+ from_secret: uv_token
@@ -0,0 +1,21 @@
1
+ when:
2
+ - event: [push, pull_request]
3
+ branch: master
4
+ - event: manual
5
+
6
+ labels:
7
+ backend: docker
8
+ platform: linux/amd64
9
+
10
+ steps:
11
+ - name: test
12
+ image: rust:latest
13
+ commands:
14
+ - cargo test
15
+
16
+ - name: build
17
+ image: ghcr.io/pyo3/maturin
18
+ commands:
19
+ - maturin build --release --manylinux 2_17 --sdist --out dist
20
+ depends_on:
21
+ - test