Skip to content

Commit 1f3e265

Browse files
committed
chore: add project specifics in package metadata
1 parent b9f4b0b commit 1f3e265

File tree

4 files changed

+43
-2
lines changed

4 files changed

+43
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ jobs:
161161

162162
- name: Build Python library
163163
run: |
164+
cd ../../README.md .
164165
uv build
165166
ls dist/
166167
working-directory: ./src/python

src/python/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Placeholder readme for build

src/python/pyproject.toml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,35 @@
11
[project]
22
name = "mcp-server-in-aws-lambda"
33
dynamic = ["version"]
4-
description = "Model Context Protocol SDK for AWS Lambda"
4+
description = "Run Model Context Protocol (MCP) servers in AWS Lambda"
55
requires-python = ">=3.11"
6+
readme = "README.md"
7+
8+
authors = [{ name = "Amazon Web Services" }]
9+
license = { text = "Apache License (2.0)" }
10+
11+
keywords = ["aws", "lambda", "mcp", "modelcontextprotocol"]
12+
classifiers = [
13+
"Development Status :: 4 - Beta",
14+
"Intended Audience :: Developers",
15+
"License :: OSI Approved :: Apache Software License",
16+
"Programming Language :: Python",
17+
"Programming Language :: Python :: 3",
18+
"Programming Language :: Python :: 3.11",
19+
"Programming Language :: Python :: 3.12",
20+
"Programming Language :: Python :: 3.13",
21+
]
622

723
dependencies = [
824
"anyio>=4.5",
925
"aiobotocore>=2.21.1",
1026
"mcp>=1.6.0"
1127
]
1228

29+
[project.urls]
30+
Repository = "https://github.com/awslabs/run-model-context-protocol-servers-in-aws-lambda"
31+
Issues = "https://github.com/awslabs/run-model-context-protocol-servers-in-aws-lambda/issues"
32+
1333
[project.optional-dependencies]
1434
stubs = ["types-aiobotocore[lambda]>=2.21.1"]
1535

src/typescript/package.json

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,27 @@
11
{
22
"name": "mcp-server-in-aws-lambda",
3-
"description": "Model Context Protocol SDK for AWS Lambda",
3+
"description": "Run Model Context Protocol (MCP) servers in AWS Lambda",
44
"version": "0.0.2",
55
"type": "module",
6+
"license": "Apache-2.0",
7+
"author": {
8+
"name": "Amazon Web Services",
9+
"url": "http://aws.amazon.com"
10+
},
11+
"homepage": "https://github.com/awslabs/run-model-context-protocol-servers-in-aws-lambda",
12+
"repository": {
13+
"type": "git",
14+
"url": "github:awslabs/run-model-context-protocol-servers-in-aws-lambda.git"
15+
},
16+
"bugs": {
17+
"url": "https://github.com/awslabs/run-model-context-protocol-servers-in-aws-lambda/issues"
18+
},
19+
"keywords": [
20+
"aws",
21+
"lambda",
22+
"mcp",
23+
"modelcontextprotocol"
24+
],
625
"scripts": {
726
"build": "tsc",
827
"prepack": "tsc",

0 commit comments

Comments
 (0)