galaxy-tool-refactor 0.2.0__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.
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: galaxy-tool-refactor
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: Front-door metapackage for galaxy-tool-refactor: installs the CLI (and, with the [mcp] extra, the MCP server).
|
|
5
|
+
Project-URL: Homepage, https://github.com/richard-burhans/galaxy-tool-refactor
|
|
6
|
+
Project-URL: Repository, https://github.com/richard-burhans/galaxy-tool-refactor
|
|
7
|
+
Project-URL: Changelog, https://github.com/richard-burhans/galaxy-tool-refactor/blob/main/CHANGELOG.md
|
|
8
|
+
Author: Richard Burhans
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
Keywords: bioinformatics,formatter,galaxy,linter,tool-xml
|
|
11
|
+
Requires-Python: >=3.10
|
|
12
|
+
Requires-Dist: galaxy-tool-refactor-cli==0.2.0
|
|
13
|
+
Provides-Extra: mcp
|
|
14
|
+
Requires-Dist: galaxy-tool-refactor-mcp==0.2.0; extra == 'mcp'
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# galaxy-tool-refactor
|
|
18
|
+
|
|
19
|
+
Front-door metapackage for the **galaxy-tool-refactor** toolkit — parse, lint,
|
|
20
|
+
format, and structurally upgrade [Galaxy](https://galaxyproject.org/) tool XML.
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
pip install galaxy-tool-refactor # the galaxy-tool-refactor CLI
|
|
24
|
+
pip install "galaxy-tool-refactor[mcp]" # + the agent-facing MCP server
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
This package installs no code of its own; it depends on
|
|
28
|
+
[`galaxy-tool-refactor-cli`](https://pypi.org/project/galaxy-tool-refactor-cli/)
|
|
29
|
+
(which provides the `galaxy-tool-refactor` command) and, via the `[mcp]` extra,
|
|
30
|
+
[`galaxy-tool-refactor-mcp`](https://pypi.org/project/galaxy-tool-refactor-mcp/).
|
|
31
|
+
|
|
32
|
+
For a minimal install of a single layer, depend on that package directly (e.g.
|
|
33
|
+
`galaxy-tool-source` for parsing/validation). See the
|
|
34
|
+
[project README](https://github.com/richard-burhans/galaxy-tool-refactor) for the
|
|
35
|
+
full package map and architecture.
|