-
Notifications
You must be signed in to change notification settings - Fork 4
Add the release of the qiskit-mcp-servers metapackage and improve existing documentation for release
#42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add the release of the qiskit-mcp-servers metapackage and improve existing documentation for release
#42
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
f6262cb
Add the release of the metapackage qiskit-mcp-servers
cbjuan ba9b7a8
Adding docs about the metapackage
cbjuan f1f33e3
Improve the documentation for automated package releases
cbjuan 49f79f4
Edit the current owner to AI4Quantum
cbjuan 856a0a5
Fixing the tool.uv.sources to fix the uv run ruff
cbjuan b430905
Fix ruff format
cbjuan b9dfc15
Update PUBLISHING.md
cbjuan 9c8e641
Merge branch 'improving-pyproject-tomls' into improve-package-releases
cbjuan 532703d
Merge branch 'improving-pyproject-tomls' into improve-package-releases
cbjuan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,7 +3,7 @@ name = "qiskit-mcp-servers" | |
| version = "0.1.0" | ||
| description = "Model Context Protocol servers for IBM Quantum services and Qiskit" | ||
| readme = "README.md" | ||
| requires-python = ">=3.10" | ||
| requires-python = ">=3.10,<3.15" | ||
| license = {text = "Apache-2.0"} | ||
| authors = [ | ||
| {name = "Quantum+AI Team. IBM Quantum", email = "[email protected]"} | ||
|
|
@@ -23,6 +23,22 @@ classifiers = [ | |
| "Topic :: Software Development :: Libraries :: Python Modules", | ||
| ] | ||
|
|
||
| # Meta-package dependencies: installs all MCP servers | ||
| dependencies = [ | ||
| "qiskit-code-assistant-mcp-server>=0.1.0", | ||
| "qiskit-ibm-runtime-mcp-server>=0.1.0", | ||
| ] | ||
|
|
||
| [project.optional-dependencies] | ||
| # Install individual servers | ||
| code-assistant = ["qiskit-code-assistant-mcp-server>=0.1.0"] | ||
| runtime = ["qiskit-ibm-runtime-mcp-server>=0.1.0"] | ||
| # Install all servers (same as default dependencies) | ||
| all = [ | ||
| "qiskit-code-assistant-mcp-server>=0.1.0", | ||
| "qiskit-ibm-runtime-mcp-server>=0.1.0", | ||
| ] | ||
|
|
||
| [project.urls] | ||
| Homepage = "https://github.com/Qiskit/mcp-servers" | ||
| Repository = "https://github.com/Qiskit/mcp-servers" | ||
|
|
@@ -33,17 +49,21 @@ Documentation = "https://github.com/Qiskit/mcp-servers#readme" | |
| requires = ["hatchling"] | ||
| build-backend = "hatchling.build" | ||
|
|
||
| # This is a workspace root, not an installable package | ||
| [tool.hatch.build.targets.wheel] | ||
| only-include = ["nonexistent_dummy_path"] | ||
| packages = ["src/qiskit_mcp_servers"] | ||
|
|
||
| # Workspace configuration for monorepo | ||
| [tool.uv.workspace] | ||
| members = [ | ||
| "qiskit-code-assistant-mcp-server", | ||
| "qiskit-ibm-runtime-mcp-server" | ||
| "qiskit-ibm-runtime-mcp-server", | ||
| ] | ||
|
|
||
| # Source configuration for workspace dependencies | ||
| [tool.uv.sources] | ||
| qiskit-code-assistant-mcp-server = { workspace = true } | ||
| qiskit-ibm-runtime-mcp-server = { workspace = true } | ||
|
|
||
| # Shared tool configurations | ||
| [tool.ruff] | ||
| # Extend the shared ruff.toml configuration | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| """ | ||
| Qiskit MCP Servers - Meta-package for all Qiskit MCP servers. | ||
|
|
||
| This is a meta-package that installs all available Qiskit MCP servers: | ||
| - qiskit-code-assistant-mcp-server: MCP server for Qiskit Code Assistant | ||
| - qiskit-ibm-runtime-mcp-server: MCP server for IBM Quantum Runtime | ||
|
|
||
| Usage: | ||
| pip install qiskit-mcp-servers | ||
|
|
||
| To install individual servers: | ||
| pip install qiskit-mcp-servers[code-assistant] | ||
| pip install qiskit-mcp-servers[runtime] | ||
| """ | ||
|
|
||
| __version__ = "0.1.0" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.