setup.py•1.05 kB
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="unreal-mcp",
version="0.1.0",
author="Unreal MCP Team",
author_email="example@example.com",
description="A Model Context Protocol (MCP) bridge for Unreal Engine",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/unreal-mcp",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
install_requires=[
"mcp>=0.1.0",
"fastmcp>=0.1.0",
"fastapi>=0.95.0",
"uvicorn>=0.21.0",
"pydantic>=1.10.7",
"requests>=2.28.2",
],
entry_points={
"console_scripts": [
"unreal-mcp=unreal_mcp_server:main",
],
},
)