mcp-cortellis

by uh-joan
Verified
[build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" [project] name = "cortellis-mcp" version = "1.0.0" description = "Cortellis MCP Server for drug discovery and clinical trial analysis" readme = "README.md" requires-python = ">=3.10" license = {file = "LICENSE"} authors = [ {name = "Joan Saez-Pons", email = "joan.saez-pons@clarivate.com"}, ] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering :: Bio-Informatics", ] dependencies = [ "websockets>=12.0", "requests>=2.31.0", "python-dotenv>=1.0.0", "mcp>=0.1.0", ] [project.optional-dependencies] test = [ "pytest>=8.0.0", "pytest-asyncio>=0.23.0", ] [project.urls] Homepage = "https://github.com/uh-joan/mcp-cortellis" Repository = "https://github.com/uh-joan/mcp-cortellis.git" Issues = "https://github.com/uh-joan/mcp-cortellis/issues" [tool.setuptools] package-dir = {"" = "src"} [tool.setuptools.packages.find] where = ["src"] [tool.black] line-length = 100 target-version = ['py310'] include = '\.pyi?$' [tool.isort] profile = "black" multi_line_output = 3 line-length = 100 [tool.pytest.ini_options] asyncio_mode = "strict" asyncio_default_fixture_loop_scope = "function"