File tree Expand file tree Collapse file tree
bubble_data_api_client.egg-info Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : release
2+ on :
3+ push :
4+ tags :
5+ - " v*"
6+
7+ jobs :
8+ build :
9+ name : build distribution
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v4
13+ with :
14+ persist-credentials : false
15+ - uses : actions/setup-python@v5
16+ with :
17+ python-version : " 3.13"
18+ - run : |
19+ python -m pip install --upgrade pip
20+ pip install --upgrade setuptools wheel build
21+ python3 -m build
22+ - uses : actions/upload-artifact@v4
23+ with :
24+ name : dist
25+ path : |
26+ dist/*.tar.gz
27+ dist/*.whl
28+ publish-to-pypi :
29+ name : upload release to PyPI
30+ if : startsWith(github.ref, 'refs/tags/v') # only publish on tag pushes
31+ needs : build
32+ runs-on : ubuntu-latest
33+ environment :
34+ name : release
35+ url : https://pypi.org/p/bubble-data-api-client
36+ permissions :
37+ id-token : write
38+ steps :
39+ - uses : actions/download-artifact@v4
40+ with :
41+ name : dist
42+ path : dist/
43+ - uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change 1+ # built python packages
2+ dist
3+ # local environment configuration for direnv
4+ .envrc
Original file line number Diff line number Diff line change 1+ [project ]
2+ name = " bubble-data-api-client"
3+ version = " 0.0.1a1"
4+ description = " Python client for Bubble Data API"
5+ readme = " README.md"
6+ requires-python = " >=3.13"
7+ dependencies = []
Original file line number Diff line number Diff line change 1+ Metadata-Version: 2.4
2+ Name: bubble-data-api-client
3+ Version: 0.0.1a1
4+ Summary: Python client for Bubble Data API
5+ Requires-Python: >=3.13
6+ Description-Content-Type: text/markdown
7+ License-File: LICENSE
8+ Dynamic: license-file
9+
10+ # bubble-data-api-client
11+ Python client for Bubble Data API
Original file line number Diff line number Diff line change 1+ LICENSE
2+ README.md
3+ pyproject.toml
4+ src/bubble_data_api_client/__init__.py
5+ src/bubble_data_api_client/main.py
6+ src/bubble_data_api_client.egg-info/PKG-INFO
7+ src/bubble_data_api_client.egg-info/SOURCES.txt
8+ src/bubble_data_api_client.egg-info/dependency_links.txt
9+ src/bubble_data_api_client.egg-info/top_level.txt
Original file line number Diff line number Diff line change 1+
Original file line number Diff line number Diff line change 1+ bubble_data_api_client
Original file line number Diff line number Diff line change 1+ __VERSION__ = "0.0.1a1"
You can’t perform that action at this time.
0 commit comments