keynotes 0.1.0__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.
keynotes-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: keynotes
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Add your description here
|
|
5
|
+
Requires-Python: >=3.11
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
|
|
8
|
+
# keynotes
|
|
9
|
+
|
|
10
|
+
Initial PyPI package scaffold for `keynotes`, using `uv` for build and publish.
|
|
11
|
+
|
|
12
|
+
## Local workflow
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
uv build
|
|
16
|
+
uv publish
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
`uv publish` reads `UV_PUBLISH_TOKEN` automatically.
|
|
20
|
+
|
|
21
|
+
If your token is stored as `PYPI_TOKEN`, run:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
export UV_PUBLISH_TOKEN="$PYPI_TOKEN"
|
|
25
|
+
uv publish
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## TestPyPI
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
uv publish --publish-url https://test.pypi.org/legacy/
|
|
32
|
+
```
|
keynotes-0.1.0/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# keynotes
|
|
2
|
+
|
|
3
|
+
Initial PyPI package scaffold for `keynotes`, using `uv` for build and publish.
|
|
4
|
+
|
|
5
|
+
## Local workflow
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
uv build
|
|
9
|
+
uv publish
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
`uv publish` reads `UV_PUBLISH_TOKEN` automatically.
|
|
13
|
+
|
|
14
|
+
If your token is stored as `PYPI_TOKEN`, run:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
export UV_PUBLISH_TOKEN="$PYPI_TOKEN"
|
|
18
|
+
uv publish
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## TestPyPI
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
uv publish --publish-url https://test.pypi.org/legacy/
|
|
25
|
+
```
|
|
File without changes
|