#!/usr/bin/env python3
"""
Setup script for Instagram MCP Server.
"""
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = [line.strip() for line in fh if line.strip() and not line.startswith("#")]
setup(
name="instagram-mcp-server",
version="1.0.0",
author="José Luis Badano",
author_email="",
description="A Model Context Protocol server for Instagram API integration",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jlbadano/ig-mcp",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Communications :: Chat",
],
python_requires=">=3.10",
install_requires=requirements,
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"pytest-mock>=3.10.0",
"pytest-benchmark>=4.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"pylint>=2.17.0",
"mypy>=1.3.0",
"bandit>=1.7.5",
"safety>=2.3.0",
"memory-profiler>=0.60.0",
"locust>=2.15.0",
]
},
entry_points={
"console_scripts": [
"instagram-mcp-server=src.instagram_mcp_server:main",
],
},
include_package_data=True,
package_data={
"": ["*.md", "*.txt", "*.yml", "*.yaml", "*.json"],
},
)