diff --git a/pyproject.toml b/pyproject.toml index 0afb5ec..210f63b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "openapi-mcp-generator" -version = "0.1.0" +version = "0.1.1" description = "Generate MCP servers from OpenAPI specifications" readme = "README.md" requires-python = ">=3.10" diff --git a/setup.py b/setup.py index 217aa4b..36c335e 100644 --- a/setup.py +++ b/setup.py @@ -7,12 +7,9 @@ setup( name="openapi-mcp-generator", - version="0.1.0", + version="0.1.1", packages=find_packages(), - include_package_data=True, - package_data={ - "": ["templates/**/*"] - }, + include_package_data=True, # This should make it read MANIFEST.in install_requires=[ "pyyaml>=6.0", "jinja2>=3.1.2", diff --git a/templates/__init__.py b/templates/__init__.py new file mode 100644 index 0000000..f0a914c --- /dev/null +++ b/templates/__init__.py @@ -0,0 +1 @@ +# This file makes the templates directory a Python package