launchpad-uv 0.0.1.dev0__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,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: launchpad-uv
|
|
3
|
+
Version: 0.0.1.dev0
|
|
4
|
+
Summary: Reserved for launchpad — release management for uv Python workspaces (semantic bumps from towncrier fragments, changelogs, per-project tags). Real distribution lands with v0.1.0.
|
|
5
|
+
Project-URL: Homepage, https://github.com/GabrielCostanzo/launchpad
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Requires-Python: >=3.9
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# launchpad-uv
|
|
12
|
+
|
|
13
|
+
This name is reserved for **launchpad** — release management for
|
|
14
|
+
[uv](https://docs.astral.sh/uv/) Python workspaces: semantic version bumps
|
|
15
|
+
aggregated from towncrier news fragments, changelogs, and per-project git tags.
|
|
16
|
+
Not related to Canonical's Launchpad or Apple's macOS Launchpad.
|
|
17
|
+
|
|
18
|
+
The real distribution (platform wheels carrying the launchpad binary) lands
|
|
19
|
+
with v0.1.0. Until then, see https://github.com/GabrielCostanzo/launchpad
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# launchpad-uv
|
|
2
|
+
|
|
3
|
+
This name is reserved for **launchpad** — release management for
|
|
4
|
+
[uv](https://docs.astral.sh/uv/) Python workspaces: semantic version bumps
|
|
5
|
+
aggregated from towncrier news fragments, changelogs, and per-project git tags.
|
|
6
|
+
Not related to Canonical's Launchpad or Apple's macOS Launchpad.
|
|
7
|
+
|
|
8
|
+
The real distribution (platform wheels carrying the launchpad binary) lands
|
|
9
|
+
with v0.1.0. Until then, see https://github.com/GabrielCostanzo/launchpad
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "launchpad-uv"
|
|
3
|
+
version = "0.0.1.dev0"
|
|
4
|
+
description = "Reserved for launchpad — release management for uv Python workspaces (semantic bumps from towncrier fragments, changelogs, per-project tags). Real distribution lands with v0.1.0."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "Apache-2.0"
|
|
7
|
+
requires-python = ">=3.9"
|
|
8
|
+
classifiers = ["Development Status :: 1 - Planning"]
|
|
9
|
+
|
|
10
|
+
[project.urls]
|
|
11
|
+
Homepage = "https://github.com/GabrielCostanzo/launchpad"
|
|
12
|
+
|
|
13
|
+
[build-system]
|
|
14
|
+
requires = ["hatchling"]
|
|
15
|
+
build-backend = "hatchling.build"
|
|
16
|
+
|
|
17
|
+
[tool.hatch.build.targets.wheel]
|
|
18
|
+
packages = ["src/launchpad_uv"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Reserved for launchpad — see https://github.com/GabrielCostanzo/launchpad"""
|