setup.py•2.37 kB
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="mcp-agent",
version="0.1.0",
author="nghiapham",
author_email="nghiapham@gmail.com",
description="A package for wrapping custom stream methods with MCP (Model Context Protocol) agent functionality",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/mcp-agent",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Communications",
"Topic :: Internet",
],
python_requires=">=3.8",
install_requires=[
"asyncio",
"typing-extensions>=4.0.0",
"pydantic>=2.0.0",
"websockets>=11.0.0",
"aiohttp>=3.8.0",
"jsonschema>=4.0.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.0.0",
"pre-commit>=3.0.0",
],
"docs": [
"sphinx>=5.0.0",
"sphinx-rtd-theme>=1.0.0",
"myst-parser>=1.0.0",
],
},
entry_points={
"console_scripts": [
"mcp-agent=mcp_agent.cli:main",
],
},
include_package_data=True,
package_data={
"mcp_agent": [
"py.typed",
"schemas/*.json",
"templates/*.txt",
],
},
zip_safe=False,
keywords="mcp, agent, stream, protocol, wrapper, async",
project_urls={
"Bug Reports": "https://github.com/yourusername/mcp-agent/issues",
"Source": "https://github.com/yourusername/mcp-agent",
"Documentation": "https://mcp-agent.readthedocs.io/",
},
)