mcp-browser/setup.py

41 lines
1.3 KiB
Python

"""Setup configuration for MCP Browser."""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="mcp-browser",
version="0.1.0",
author="MCP Browser Contributors",
description="A generic, minimalistic MCP protocol interface for AI systems",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/mcp-browser",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"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",
],
python_requires=">=3.8",
install_requires=[
"pyyaml>=6.0",
"jsonpath-ng>=1.5.3",
],
extras_require={
"dev": [
"pytest>=7.0",
"pytest-asyncio>=0.20",
"black>=22.0",
"mypy>=0.990",
]
}
)