Skip to content

Commit 05e28f2

Browse files
Rename package to everyrow and add PyPI publish workflow (#9)
* Rename package from everyrow_sdk to everyrow Simplify import ergonomics by removing the _sdk suffix from the package name. Users can now import with `from everyrow import ...` instead of `from everyrow_sdk import ...`. Changes: - Rename src/everyrow_sdk/ directory to src/everyrow/ - Update all imports across source, examples, tests, and case studies - Update pyproject.toml, lefthook.yml, openapi-python-client.yaml - Update generate_openapi.sh script - Update CI workflow paths - Update README.md documentation Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Rename package to everyrow and add PyPI publish workflow - Change package name from everyrow-sdk to everyrow - Add GitHub Actions workflow for trusted publishing to PyPI Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent f7cf8ae commit 05e28f2

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

.github/workflows/publish.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Publish to PyPI
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
publish:
9+
name: Publish to PyPI
10+
runs-on: ubuntu-latest
11+
environment: pypi
12+
permissions:
13+
id-token: write
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Install uv
18+
uses: astral-sh/setup-uv@v5
19+
20+
- name: Set up Python
21+
uses: actions/setup-python@v5
22+
with:
23+
python-version: "3.12"
24+
25+
- name: Build package
26+
run: uv build
27+
28+
- name: Publish to PyPI
29+
uses: pypa/gh-action-pypi-publish@release/v1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "everyrow-sdk"
2+
name = "everyrow"
33
version = "0.1.0"
44
description = "An SDK for everyrow.io: agent ops at spreadsheet scale"
55
readme = "README.md"

0 commit comments

Comments
 (0)