formatted and uploaded to pypi
This commit is contained in:
parent
bdde154efa
commit
320461d2fe
6
main.py
6
main.py
@ -1,6 +1,8 @@
|
||||
def main():
|
||||
print("Hello from blender-mcp!")
|
||||
from blender_mcp.server import main as server_main
|
||||
|
||||
def main():
|
||||
"""Entry point for the blender-mcp package"""
|
||||
server_main()
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
||||
@ -1,9 +1,32 @@
|
||||
[project]
|
||||
name = "blender-mcp"
|
||||
version = "0.1.0"
|
||||
description = "Add your description here"
|
||||
description = "Blender integration through the Model Context Protocol"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
authors = [
|
||||
{name = "Your Name", email = "your.email@example.com"}
|
||||
]
|
||||
license = {text = "MIT"}
|
||||
classifiers = [
|
||||
"Programming Language :: Python :: 3",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
]
|
||||
dependencies = [
|
||||
"mcp[cli]>=1.3.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
blender-mcp = "blender_mcp.server:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools>=61.0", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.setuptools]
|
||||
package-dir = {"" = "src"}
|
||||
|
||||
[project.urls]
|
||||
"Homepage" = "https://github.com/yourusername/blender-mcp"
|
||||
"Bug Tracker" = "https://github.com/yourusername/blender-mcp/issues"
|
||||
|
||||
6
src/blender_mcp/__init__.py
Normal file
6
src/blender_mcp/__init__.py
Normal file
@ -0,0 +1,6 @@
|
||||
"""Blender integration through the Model Context Protocol."""
|
||||
|
||||
__version__ = "0.1.0"
|
||||
|
||||
# Expose key classes and functions for easier imports
|
||||
from .server import BlenderConnection, get_blender_connection
|
||||
Loading…
Reference in New Issue
Block a user