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.
@@ -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
+ ```
@@ -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
+ ```
@@ -0,0 +1,11 @@
1
+ [project]
2
+ name = "keynotes"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.11"
7
+ dependencies = []
8
+
9
+ [build-system]
10
+ requires = ["uv_build>=0.9.14,<0.10.0"]
11
+ build-backend = "uv_build"
@@ -0,0 +1,4 @@
1
+ """keynotes package."""
2
+
3
+ __all__ = ["__version__"]
4
+ __version__ = "0.1.0"
File without changes