rikpy 0.5.7__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,34 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+ build-and-publish:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v4
14
+ with:
15
+ ref: main
16
+
17
+ - name: Set up Python
18
+ uses: actions/setup-python@v5
19
+ with:
20
+ python-version: 3.11
21
+
22
+ - name: Install build tools
23
+ run: |
24
+ pip install --upgrade pip
25
+ pip install build twine
26
+
27
+ - name: Build package
28
+ run: python -m build
29
+
30
+ - name: Publish to PyPI
31
+ env:
32
+ TWINE_USERNAME: __token__
33
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
34
+ run: twine upload dist/*
@@ -0,0 +1,23 @@
1
+ name: Release Please
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ permissions:
9
+ contents: write
10
+ pull-requests: write
11
+ issues: write
12
+ checks: write
13
+ statuses: write
14
+
15
+ jobs:
16
+ release:
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: googleapis/release-please-action@v4
20
+ with:
21
+ release-type: python
22
+ token: ${{ secrets.GITHUB_TOKEN }}
23
+ command: release-pr
rikpy-0.5.7/.gitignore ADDED
@@ -0,0 +1,37 @@
1
+ # Python build artifacts
2
+ *.egg-info/
3
+ *.egg
4
+ dist/
5
+ build/
6
+ __pycache__/
7
+ *.pyc
8
+ *.pyo
9
+ *.pyd
10
+ .Python
11
+
12
+ # Environment
13
+ .env
14
+ .venv
15
+ env/
16
+ venv/
17
+ ENV/
18
+
19
+ # IDE
20
+ .vscode/
21
+ .idea/
22
+ *.swp
23
+ *.swo
24
+
25
+ # OS
26
+ .DS_Store
27
+ Thumbs.db
28
+ .syncmetadata
29
+
30
+ # Text and data files
31
+ *.jsonl
32
+ *.txt
33
+ *.log
34
+ *.csv
35
+ *.tsv
36
+ *.dat
37
+ *.data
@@ -0,0 +1,8 @@
1
+ # Changelog
2
+
3
+ ## [0.5.7](https://github.com/rfp-byte/RikPy/compare/v0.5.6...v0.5.7) (2025-04-12)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * release ([ec33760](https://github.com/rfp-byte/RikPy/commit/ec33760511aebfc7374e075e8815416853176dcc))