-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add project license, URLs, other metadata
- Loading branch information
1 parent
2cebc73
commit 6fef3be
Showing
1 changed file
with
19 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1,9 +1,22 @@ | ||
[project] | ||
name = "create-mcp-server" | ||
version = "1.0.3.dev0" | ||
description = "Create an MCP server project from a template." | ||
description = "Create an Model Context Protocol server project from a template." | ||
readme = "README.md" | ||
requires-python = ">=3.10" | ||
authors = [{ name = "Anthropic, PBC." }] | ||
maintainers = [ | ||
{ name = "David Soria Parra", email = "[email protected]" }, | ||
{ name = "Justin Spahr-Summers", email = "[email protected]" }, | ||
] | ||
license = { text = "MIT" } | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.10", | ||
] | ||
dependencies = [ | ||
"click>=8.1.7", | ||
"jinja2>=3.1.4", | ||
|
@@ -14,6 +27,10 @@ dependencies = [ | |
[project.scripts] | ||
create-mcp-server = "create_mcp_server:main" | ||
|
||
[project.urls] | ||
Homepage = "https://modelcontextprotocol.io" | ||
Repository = "https://github.com/modelcontextprotocol/create-python-server" | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
@@ -22,7 +39,4 @@ build-backend = "hatchling.build" | |
artifacts = ["src/create_mcp_server/template"] | ||
|
||
[tool.uv] | ||
dev-dependencies = [ | ||
"pyright>=1.1.389", | ||
"ruff>=0.7.4", | ||
] | ||
dev-dependencies = ["pyright>=1.1.389", "ruff>=0.7.4"] |