plactl 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.
plactl/__init__.py ADDED
@@ -0,0 +1,18 @@
1
+ """plactl — official name reservation for the plactl CLI."""
2
+
3
+ __version__ = "0.0.1"
4
+
5
+ HOMEPAGE = "https://github.com/plactl"
6
+
7
+
8
+ def main() -> int:
9
+ print(f"plactl v{__version__}")
10
+ print()
11
+ print("plactl is an internal developer platform: GitHub-integrated,")
12
+ print("Terraform-driven AWS provisioning in your own AWS Organization.")
13
+ print()
14
+ print("The plactl CLI has not shipped to PyPI yet — this package reserves")
15
+ print("the name and will become the official distribution when it does.")
16
+ print()
17
+ print(f"Project: {HOMEPAGE}")
18
+ return 1
plactl/__main__.py ADDED
@@ -0,0 +1,5 @@
1
+ import sys
2
+
3
+ from plactl import main
4
+
5
+ sys.exit(main())
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: plactl
3
+ Version: 0.0.1
4
+ Summary: plactl — platform control. Official name reservation for the plactl CLI; real releases will ship here.
5
+ Project-URL: Homepage, https://github.com/plactl
6
+ Author: Luke Diliberto
7
+ License: MIT
8
+ Keywords: idp,internal-developer-platform,plactl,platform-engineering
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Environment :: Console
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.9
14
+ Description-Content-Type: text/markdown
15
+
16
+ # plactl
17
+
18
+ **plactl** is an internal developer platform: GitHub-integrated, Terraform-driven
19
+ AWS provisioning that runs entirely in your own AWS Organization.
20
+
21
+ This package is the **official name reservation** by the plactl project
22
+ ([github.com/plactl](https://github.com/plactl)). The plactl CLI has not shipped
23
+ to PyPI yet; when it does, releases will be published here.
24
+
25
+ Installing this version gives you a stub command that prints project information
26
+ and exits.
27
+
28
+ ```
29
+ pipx run plactl
30
+ ```
31
+
32
+ If you believe this package conflicts with your project, contact the author via
33
+ the GitHub organization above.
@@ -0,0 +1,6 @@
1
+ plactl/__init__.py,sha256=b_jZqo9ouoxzO2utppaAkpdkiBNqFKVTLigHaO-20S4,577
2
+ plactl/__main__.py,sha256=57sl5iW9z9JnZPMgnePCfx5Li3V6tY187OdVOhzdE8U,54
3
+ plactl-0.0.1.dist-info/METADATA,sha256=e3ZVJdYmCv90I21z_aY3ucE7NHjANc33MtYs8YvX90s,1166
4
+ plactl-0.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
5
+ plactl-0.0.1.dist-info/entry_points.txt,sha256=4BwE2FamWLvrYBsqK61ipzLD-JQVZ0DggPnhMbtYBZw,39
6
+ plactl-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ plactl = plactl:main