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.
- rikpy-0.5.7/.github/workflows/pypi-publish.yml +34 -0
- rikpy-0.5.7/.github/workflows/release-please.yml +23 -0
- rikpy-0.5.7/.gitignore +37 -0
- rikpy-0.5.7/CHANGELOG.md +8 -0
- rikpy-0.5.7/LICENSE +674 -0
- rikpy-0.5.7/PKG-INFO +42 -0
- rikpy-0.5.7/README.md +29 -0
- rikpy-0.5.7/RikPy/.gitignore +7 -0
- rikpy-0.5.7/RikPy/__init__.py +0 -0
- rikpy-0.5.7/RikPy/commonairtable.py +286 -0
- rikpy-0.5.7/RikPy/commonfunctions.py +218 -0
- rikpy-0.5.7/RikPy/commongoogle.py +63 -0
- rikpy-0.5.7/RikPy/commonheroku.py +443 -0
- rikpy-0.5.7/RikPy/commonleonardo.py +399 -0
- rikpy-0.5.7/RikPy/commonlogging.py +7 -0
- rikpy-0.5.7/RikPy/commonopenai.py +112 -0
- rikpy-0.5.7/RikPy/commons3.py +232 -0
- rikpy-0.5.7/RikPy/commonshopify.py +2249 -0
- rikpy-0.5.7/RikPy/customresponse.py +11 -0
- rikpy-0.5.7/manifest.in +11 -0
- rikpy-0.5.7/pyproject.toml +26 -0
|
@@ -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
|