mpat 0.0.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.
mpat-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: mpat
3
+ Version: 0.0.1
4
+ Summary: Lockfile-based upstream drift tracking for Python monkeypatches
5
+ Author: Daniel Yudelevich
6
+ License-Expression: MIT
7
+ Classifier: Development Status :: 1 - Planning
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Requires-Python: >=3.11
11
+ Project-URL: Homepage, https://monkeypat.ch
12
+ Project-URL: Repository, https://github.com/yudelevi/mpat
13
+ Description-Content-Type: text/markdown
14
+
15
+ # mpat
16
+
17
+ Lockfile-based upstream drift tracking for Python monkeypatches.
18
+
19
+ Declare a monkeypatch once, lock the fingerprint of every upstream symbol it
20
+ depends on, and let CI tell you when a dependency bump moved the ground under
21
+ it. https://monkeypat.ch
22
+
23
+ This is a placeholder release. Design spec lives in
24
+ `docs/superpowers/specs/`.
mpat-0.0.1/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # mpat
2
+
3
+ Lockfile-based upstream drift tracking for Python monkeypatches.
4
+
5
+ Declare a monkeypatch once, lock the fingerprint of every upstream symbol it
6
+ depends on, and let CI tell you when a dependency bump moved the ground under
7
+ it. https://monkeypat.ch
8
+
9
+ This is a placeholder release. Design spec lives in
10
+ `docs/superpowers/specs/`.
@@ -0,0 +1,31 @@
1
+ [project]
2
+ name = "mpat"
3
+ version = "0.0.1"
4
+ description = "Lockfile-based upstream drift tracking for Python monkeypatches"
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ requires-python = ">=3.11"
8
+ dependencies = []
9
+ classifiers = [
10
+ "Development Status :: 1 - Planning",
11
+ "Programming Language :: Python :: 3",
12
+ "License :: OSI Approved :: MIT License",
13
+ ]
14
+
15
+ [[project.authors]]
16
+ name = "Daniel Yudelevich"
17
+
18
+ [project.urls]
19
+ Homepage = "https://monkeypat.ch"
20
+ Repository = "https://github.com/yudelevi/mpat"
21
+
22
+ [build-system]
23
+ requires = ["uv_build>=0.11"]
24
+ build-backend = "uv_build"
25
+
26
+ [dependency-groups]
27
+ dev = [
28
+ "pytest>=8",
29
+ "ruff",
30
+ "ty",
31
+ ]
@@ -0,0 +1,25 @@
1
+ [project]
2
+ name = "mpat"
3
+ version = "0.0.1"
4
+ description = "Lockfile-based upstream drift tracking for Python monkeypatches"
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ authors = [{ name = "Daniel Yudelevich" }]
8
+ requires-python = ">=3.11"
9
+ dependencies = []
10
+ classifiers = [
11
+ "Development Status :: 1 - Planning",
12
+ "Programming Language :: Python :: 3",
13
+ "License :: OSI Approved :: MIT License",
14
+ ]
15
+
16
+ [project.urls]
17
+ Homepage = "https://monkeypat.ch"
18
+ Repository = "https://github.com/yudelevi/mpat"
19
+
20
+ [build-system]
21
+ requires = ["uv_build>=0.11"]
22
+ build-backend = "uv_build"
23
+
24
+ [dependency-groups]
25
+ dev = ["pytest>=8", "ruff", "ty"]
@@ -0,0 +1,6 @@
1
+ """mpat: lockfile-based upstream drift tracking for Python monkeypatches.
2
+
3
+ Placeholder release reserving the name. See https://monkeypat.ch.
4
+ """
5
+
6
+ __version__ = "0.0.1"