mpat 0.0.1__py3-none-any.whl
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/__init__.py +6 -0
- mpat-0.0.1.dist-info/METADATA +24 -0
- mpat-0.0.1.dist-info/RECORD +4 -0
- mpat-0.0.1.dist-info/WHEEL +4 -0
mpat/__init__.py
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/`.
|