-
-
Notifications
You must be signed in to change notification settings - Fork 2
chore: add conda recipe #9
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
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| {% set name = "mcp_compose" %} | ||
|
|
||
| package: | ||
| name: {{ name|lower }} | ||
| version: {{ environ.get("PKG_VERSION") }} | ||
|
|
||
| source: | ||
| path: .. | ||
|
|
||
| build: | ||
| noarch: python | ||
| number: 0 | ||
| script: | | ||
| python -m pip install --no-deps --no-build-isolation -vv . | ||
|
||
|
|
||
| requirements: | ||
| host: | ||
| - python >=3.10 | ||
| - pip | ||
| - hatchling ~=1.21 | ||
| run: | ||
| - python >=3.10 | ||
| - pyjwt >=2.8.0 | ||
| - cryptography >=41.0.0 | ||
| - fastapi >=0.104.0 | ||
| - httpx >=0.25.0 | ||
| - importlib-metadata >=4.8.0 | ||
| - psutil >=5.9.0 | ||
| - pydantic >=2 | ||
| - python-dotenv >=1.0.0 | ||
| - sse-starlette >=1.8.0 | ||
| - toml >=0.10.2 | ||
| - typing-extensions >=4 | ||
| - uvicorn >=0.24.0 | ||
| - tomli >=2.0.0 | ||
| - mcp[cli] >=1.2.1 | ||
|
||
|
|
||
| test: | ||
| requires: | ||
| - pip | ||
| commands: | ||
| - python -c "import mcp_compose" | ||
| - mcp-compose --help | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would be nice to add - pip checkhere |
||
|
|
||
| about: | ||
| home: https://github.com/datalayer/mcp-compose | ||
| license: BSD-3-Clause | ||
| license_file: LICENSE | ||
| summary: "Composition server for the Model Context Protocol (MCP)." | ||
| doc_url: https://github.com/datalayer/mcp-compose | ||
| dev_url: https://github.com/datalayer/mcp-compose | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would recommend adding this sections as home: https://github.com/datalayer/mcp-compose
summary: 'Composition server for the Model Context Protocol (MCP).'
description: |
A powerful, production-ready framework for composing and orchestrating Model
Context Protocol (MCP) servers with advanced management capabilities, REST API,
and modern Web UI. # Remember to specify the license variants for BSD, Apache,
GPL, and LGPL.
license: MIT
license_family: MIT
license_file: LICENSE
doc_url: https://github.com/datalayer/mcp-compose
dev_url: https://github.com/datalayer/mcp-compose
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No problem. Although the README says the repository is under BSD instead (https://github.com/datalayer/mcp-compose#-license) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh my bad, license, and license_family can be updated with the correct values! |
||
|
|
||
| extra: | ||
| recipe-maintainers: | ||
| - datalayer | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you please add here also @echarles
@eleonorecharles
@goanpecaIt would make it easier to copy paste the recipe in conda-forge
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will add all of them to the recipe. The @ is not supported tho |
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be
mcp-compose@echarles ?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mcp-composelooks nicer indeed :)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will change it. I used
mcp_composebecause that is how it is in thepyproject.tomlmcp-compose/pyproject.toml
Line 10 in 6026538