galaxy-tool-refactor 0.2.0__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,24 @@
|
|
|
1
|
+
# Machine-local scratch, never committed: the cloned corpus (.local/corpus,
|
|
2
|
+
# seeded from corpus_sources.json) and external source clones for inspection
|
|
3
|
+
# (e.g. .local/galaxy-src = a clone of galaxyproject/galaxy used to verify
|
|
4
|
+
# Galaxy-internal behaviour locally).
|
|
5
|
+
# No trailing slash: `.local/` matches only a directory, so an accidental
|
|
6
|
+
# symlink at this path was committable (it happened once; removed in this branch).
|
|
7
|
+
.local
|
|
8
|
+
.venv/
|
|
9
|
+
__pycache__/
|
|
10
|
+
*.pyc
|
|
11
|
+
*.pyo
|
|
12
|
+
.pytest_cache/
|
|
13
|
+
.mypy_cache/
|
|
14
|
+
.ruff_cache/
|
|
15
|
+
dist/
|
|
16
|
+
*.egg-info/
|
|
17
|
+
|
|
18
|
+
# Local-only draft of the GCC poster abstract.
|
|
19
|
+
gcc2026-abstract.txt
|
|
20
|
+
|
|
21
|
+
# Claude Code session scratch (the tracked .claude/ settings + skills stay; this
|
|
22
|
+
# runtime lock for scheduled wakeups is machine-local).
|
|
23
|
+
.claude/scheduled_tasks.lock
|
|
24
|
+
.claude/worktrees/
|
|
@@ -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.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# galaxy-tool-refactor
|
|
2
|
+
|
|
3
|
+
Front-door metapackage for the **galaxy-tool-refactor** toolkit — parse, lint,
|
|
4
|
+
format, and structurally upgrade [Galaxy](https://galaxyproject.org/) tool XML.
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
pip install galaxy-tool-refactor # the galaxy-tool-refactor CLI
|
|
8
|
+
pip install "galaxy-tool-refactor[mcp]" # + the agent-facing MCP server
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This package installs no code of its own; it depends on
|
|
12
|
+
[`galaxy-tool-refactor-cli`](https://pypi.org/project/galaxy-tool-refactor-cli/)
|
|
13
|
+
(which provides the `galaxy-tool-refactor` command) and, via the `[mcp]` extra,
|
|
14
|
+
[`galaxy-tool-refactor-mcp`](https://pypi.org/project/galaxy-tool-refactor-mcp/).
|
|
15
|
+
|
|
16
|
+
For a minimal install of a single layer, depend on that package directly (e.g.
|
|
17
|
+
`galaxy-tool-source` for parsing/validation). See the
|
|
18
|
+
[project README](https://github.com/richard-burhans/galaxy-tool-refactor) for the
|
|
19
|
+
full package map and architecture.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "galaxy-tool-refactor"
|
|
3
|
+
version = "0.2.0"
|
|
4
|
+
description = "Front-door metapackage for galaxy-tool-refactor: installs the CLI (and, with the [mcp] extra, the MCP server)."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
license = "MIT"
|
|
8
|
+
authors = [{ name = "Richard Burhans" }]
|
|
9
|
+
keywords = ["galaxy", "bioinformatics", "tool-xml", "linter", "formatter"]
|
|
10
|
+
# The CLI is the front door (it provides the `galaxy-tool-refactor` command).
|
|
11
|
+
dependencies = [
|
|
12
|
+
"galaxy-tool-refactor-cli==0.2.0",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[project.optional-dependencies]
|
|
16
|
+
# The agent-facing MCP server (pulls the MCP SDK); opt in with
|
|
17
|
+
# `pip install galaxy-tool-refactor[mcp]`.
|
|
18
|
+
mcp = [
|
|
19
|
+
"galaxy-tool-refactor-mcp==0.2.0",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://github.com/richard-burhans/galaxy-tool-refactor"
|
|
24
|
+
Repository = "https://github.com/richard-burhans/galaxy-tool-refactor"
|
|
25
|
+
Changelog = "https://github.com/richard-burhans/galaxy-tool-refactor/blob/main/CHANGELOG.md"
|
|
26
|
+
|
|
27
|
+
[build-system]
|
|
28
|
+
requires = ["hatchling"]
|
|
29
|
+
build-backend = "hatchling.build"
|
|
30
|
+
|
|
31
|
+
# A pure metapackage: no Python modules, only dependency metadata.
|
|
32
|
+
[tool.hatch.build.targets.wheel]
|
|
33
|
+
bypass-selection = true
|
|
34
|
+
|
|
35
|
+
[tool.uv.sources]
|
|
36
|
+
galaxy-tool-refactor-cli = { workspace = true }
|
|
37
|
+
galaxy-tool-refactor-mcp = { workspace = true }
|