setup.py•1.59 kB
"""
Setup configuration for Claude-Modeling-Labs MCP Server
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="claude-modeling-labs",
version="2.0.0",
author="Claude AI Assistant",
description="A comprehensive MCP toolkit for Cisco Modeling Labs automation",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(where="src"),
package_dir={"": "src"},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"License :: OSI Approved :: MIT License",
"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",
],
python_requires=">=3.8",
install_requires=[
"fastmcp>=0.1.0",
"httpx>=0.26.0",
"urllib3>=2.0.0",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=22.0.0",
"isort>=5.0.0",
"flake8>=4.0.0",
],
},
entry_points={
"console_scripts": [
"cml-mcp=server:main",
],
},
)