from setuptools import setup, find_packages
setup(
name="cortellis-mcp",
version="1.0.0",
description="Cortellis MCP Server for drug discovery and clinical trial analysis",
author="Joan Saez-Pons",
author_email="joan.saez-pons@clarivate.com",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"websockets>=12.0",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"mcp>=0.1.0",
],
python_requires=">=3.10",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)