Skip to content

Commit 74a1760

Browse files
committed
Bump version to 0.1.1 and add __init__.py to templates directory
1 parent 269a09c commit 74a1760

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "openapi-mcp-generator"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
description = "Generate MCP servers from OpenAPI specifications"
99
readme = "README.md"
1010
requires-python = ">=3.10"

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,9 @@
77

88
setup(
99
name="openapi-mcp-generator",
10-
version="0.1.0",
10+
version="0.1.1",
1111
packages=find_packages(),
12-
include_package_data=True,
13-
package_data={
14-
"": ["templates/**/*"]
15-
},
12+
include_package_data=True, # This should make it read MANIFEST.in
1613
install_requires=[
1714
"pyyaml>=6.0",
1815
"jinja2>=3.1.2",

templates/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# This file makes the templates directory a Python package

0 commit comments

Comments
 (0)