Skip to content

Commit c24d360

Browse files
Merge pull request #8 from openapi/dev
Update .gitignore and add MIT license metadata for packaging
2 parents 1900c06 + 60f516e commit c24d360

4 files changed

Lines changed: 31 additions & 76 deletions

File tree

.convcommit

Lines changed: 0 additions & 76 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ re-deploy.sh
2626
# Local build artifacts
2727
.install.stamp
2828
.python-version
29+
.convcommit
2930

3031
# Generated by integration tests (contains token)
3132
.mcp.json

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Openapi
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

pyproject.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ version = "0.3.0"
44
description = "Openapi.com official mcp server implementation"
55
readme = "docs/readme-pypi.md"
66
requires-python = ">=3.13"
7+
license = "MIT"
8+
classifiers = [
9+
"License :: OSI Approved :: MIT License",
10+
"Programming Language :: Python :: 3",
11+
"Programming Language :: Python :: 3.13",
12+
]
713
dependencies = [
814
"expiringdict>=1.2.2",
915
"fastmcp>=2.9.1",
@@ -15,5 +21,8 @@ dependencies = [
1521
"fastapi>=0.110.0",
1622
]
1723

24+
[tool.setuptools]
25+
license-files = ["LICENSE"]
26+
1827
[project.scripts]
1928
openapi-mcp-sdk = "openapi_mcp_sdk.cli:main"

0 commit comments

Comments
 (0)