lemonpie-cli 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.
@@ -0,0 +1,31 @@
1
+ name: CI & Build Verification
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ tags:
8
+ - "v*"
9
+ pull_request:
10
+ branches:
11
+ - main
12
+
13
+ jobs:
14
+ build:
15
+ name: Build & Check Package
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
19
+ with:
20
+ fetch-depth: 0
21
+
22
+ - name: Install uv
23
+ uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
24
+ with:
25
+ version: "0.12.17"
26
+
27
+ - name: Set up Python
28
+ run: uv python install
29
+
30
+ - name: Verify build artifact
31
+ run: uv build
@@ -0,0 +1,33 @@
1
+ name: Release Package to PyPI
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ jobs:
9
+ pypi-publish:
10
+ name: Build and publish to PyPI
11
+ runs-on: ubuntu-latest
12
+ environment: pypi
13
+ permissions:
14
+ id-token: write # Required for Trusted Publisher OIDC authentication
15
+
16
+ steps:
17
+ - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
18
+ with:
19
+ fetch-depth: 0
20
+
21
+ - name: Install uv
22
+ uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
23
+ with:
24
+ version: "0.12.17"
25
+
26
+ - name: Set up Python
27
+ run: uv python install
28
+
29
+ - name: Build package artifacts
30
+ run: uv build
31
+
32
+ - name: Publish to PyPI
33
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,35 @@
1
+ # Virtual environments
2
+ .venv/
3
+ venv/
4
+ env/
5
+
6
+ # Python build artifacts
7
+ __pycache__/
8
+ *.pyc
9
+ *.pyo
10
+ *.pyd
11
+
12
+ # Packaging output
13
+ dist/
14
+ build/
15
+ lemonpie/_version.py
16
+ *.egg-info/
17
+
18
+ # Runtime artifacts
19
+ config.json
20
+ sessions/*
21
+ !sessions/.gitkeep
22
+ *.log
23
+ *.tmp
24
+
25
+ # IDE/editor files
26
+ .vscode/
27
+ .idea/
28
+ *.swp
29
+
30
+ # OS temporary files
31
+ .DS_Store
32
+ Thumbs.db
33
+
34
+ # Secrets & Environment Variables
35
+ .env