llamagen-python 0.1.0__tar.gz → 0.1.1__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.
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/PKG-INFO +2 -34
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/README.md +1 -33
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/pyproject.toml +1 -1
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/src/llamagen/__init__.py +1 -1
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/.gitignore +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/LICENSE +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/docs/RELEASE.md +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/examples/quickstart.py +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/src/llamagen/_client.py +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/src/llamagen/_errors.py +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/src/llamagen/_http.py +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/src/llamagen/_types.py +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/src/llamagen/_webhooks.py +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/src/llamagen/py.typed +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/src/llamagen/resources/__init__.py +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/src/llamagen/resources/animations.py +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/src/llamagen/resources/comics.py +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/tests/test_client.py +0 -0
- {llamagen_python-0.1.0 → llamagen_python-0.1.1}/tests/test_webhooks.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: llamagen-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Official Python SDK for LlamaGen Comic API and Animation API
|
|
5
5
|
Project-URL: Homepage, https://llamagen.ai/comic-api
|
|
6
6
|
Project-URL: Documentation, https://llamagen.ai/comic-api/docs
|
|
@@ -157,39 +157,7 @@ The helper verifies `X-Llama-Webhook-Timestamp` and
|
|
|
157
157
|
|
|
158
158
|
## Publishing
|
|
159
159
|
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
1. Update `version` in `pyproject.toml`.
|
|
163
|
-
2. Run tests and packaging checks:
|
|
164
|
-
|
|
165
|
-
```bash
|
|
166
|
-
python -m unittest discover -s tests
|
|
167
|
-
python -m pip install --upgrade build twine
|
|
168
|
-
python -m build
|
|
169
|
-
python -m twine check dist/*
|
|
170
|
-
```
|
|
171
|
-
|
|
172
|
-
3. Publish to TestPyPI first:
|
|
173
|
-
|
|
174
|
-
```bash
|
|
175
|
-
python -m twine upload --repository testpypi dist/*
|
|
176
|
-
```
|
|
177
|
-
|
|
178
|
-
4. Install from TestPyPI in a clean environment and smoke-test:
|
|
179
|
-
|
|
180
|
-
```bash
|
|
181
|
-
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ llamagen-python
|
|
182
|
-
```
|
|
183
|
-
|
|
184
|
-
5. Publish to PyPI:
|
|
185
|
-
|
|
186
|
-
```bash
|
|
187
|
-
python -m twine upload dist/*
|
|
188
|
-
```
|
|
189
|
-
|
|
190
|
-
Use a PyPI API token through `TWINE_USERNAME=__token__` and
|
|
191
|
-
`TWINE_PASSWORD=pypi-...` or configure a trusted publisher in PyPI for GitHub
|
|
192
|
-
Actions.
|
|
160
|
+
Maintainers can follow the release guide in [`docs/RELEASE.md`](docs/RELEASE.md).
|
|
193
161
|
|
|
194
162
|
## Local Dev
|
|
195
163
|
|
|
@@ -132,39 +132,7 @@ The helper verifies `X-Llama-Webhook-Timestamp` and
|
|
|
132
132
|
|
|
133
133
|
## Publishing
|
|
134
134
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
1. Update `version` in `pyproject.toml`.
|
|
138
|
-
2. Run tests and packaging checks:
|
|
139
|
-
|
|
140
|
-
```bash
|
|
141
|
-
python -m unittest discover -s tests
|
|
142
|
-
python -m pip install --upgrade build twine
|
|
143
|
-
python -m build
|
|
144
|
-
python -m twine check dist/*
|
|
145
|
-
```
|
|
146
|
-
|
|
147
|
-
3. Publish to TestPyPI first:
|
|
148
|
-
|
|
149
|
-
```bash
|
|
150
|
-
python -m twine upload --repository testpypi dist/*
|
|
151
|
-
```
|
|
152
|
-
|
|
153
|
-
4. Install from TestPyPI in a clean environment and smoke-test:
|
|
154
|
-
|
|
155
|
-
```bash
|
|
156
|
-
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ llamagen-python
|
|
157
|
-
```
|
|
158
|
-
|
|
159
|
-
5. Publish to PyPI:
|
|
160
|
-
|
|
161
|
-
```bash
|
|
162
|
-
python -m twine upload dist/*
|
|
163
|
-
```
|
|
164
|
-
|
|
165
|
-
Use a PyPI API token through `TWINE_USERNAME=__token__` and
|
|
166
|
-
`TWINE_PASSWORD=pypi-...` or configure a trusted publisher in PyPI for GitHub
|
|
167
|
-
Actions.
|
|
135
|
+
Maintainers can follow the release guide in [`docs/RELEASE.md`](docs/RELEASE.md).
|
|
168
136
|
|
|
169
137
|
## Local Dev
|
|
170
138
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|