mcpctl-cli 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.
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: mcpctl-cli
3
+ Version: 0.0.1
4
+ Summary: Placeholder package to reserve the mcpctl-cli name for the mcpctl project.
5
+ Author: TJ (Thomas John)
6
+ License: Apache-2.0
7
+ Requires-Python: >=3.11
8
+ Description-Content-Type: text/markdown
9
+
10
+ # mcpctl-cli
11
+
12
+ Placeholder package to reserve the `mcpctl-cli` name for the `mcpctl` project.
@@ -0,0 +1,3 @@
1
+ # mcpctl-cli
2
+
3
+ Placeholder package to reserve the `mcpctl-cli` name for the `mcpctl` project.
@@ -0,0 +1,18 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "mcpctl-cli"
7
+ version = "0.0.1"
8
+ description = "Placeholder package to reserve the mcpctl-cli name for the mcpctl project."
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = { text = "Apache-2.0" }
12
+ authors = [{ name = "TJ (Thomas John)" }]
13
+
14
+ [project.scripts]
15
+ mcpctl = "mcpctl.cli:main"
16
+
17
+ [tool.setuptools.packages.find]
18
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
File without changes
@@ -0,0 +1,2 @@
1
+ def main():
2
+ print("mcpctl is coming soon. Repo: https://github.com/TJ-thomas-john/mcpctl")
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: mcpctl-cli
3
+ Version: 0.0.1
4
+ Summary: Placeholder package to reserve the mcpctl-cli name for the mcpctl project.
5
+ Author: TJ (Thomas John)
6
+ License: Apache-2.0
7
+ Requires-Python: >=3.11
8
+ Description-Content-Type: text/markdown
9
+
10
+ # mcpctl-cli
11
+
12
+ Placeholder package to reserve the `mcpctl-cli` name for the `mcpctl` project.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/mcpctl/__init__.py
4
+ src/mcpctl/cli.py
5
+ src/mcpctl_cli.egg-info/PKG-INFO
6
+ src/mcpctl_cli.egg-info/SOURCES.txt
7
+ src/mcpctl_cli.egg-info/dependency_links.txt
8
+ src/mcpctl_cli.egg-info/entry_points.txt
9
+ src/mcpctl_cli.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ mcpctl = mcpctl.cli:main