[build-system] requires = ["setuptools>=77.0.3", "wheel"] build-backend = "setuptools.build_meta" [project] name = "pythonanywhere-mcp-server" version = "0.0.12" description = "PythonAnywhere Model Context Protocol Server" authors = [ {name = "PythonAnywhere Developers", email = "developers@pythonanywhere.com"} ] readme = "README.md" requires-python = ">=3.13" dependencies = [ "pythonanywhere-core>=0.3.0", "mcp[cli]<2.0.0", ] classifiers = [ "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Utilities", ] license = "MIT" [project.optional-dependencies] test = [ "pytest", "pytest-mock", ] [project.scripts] pythonanywhere-mcp-server = "pythonanywhere_mcp_server.__main__:main" [project.urls] Homepage = "https://github.com/pythonanywhere/pythonanywhere-mcp-server" Repository = "https://github.com/pythonanywhere/pythonanywhere-mcp-server" Documentation = "https://github.com/pythonanywhere/pythonanywhere-mcp-server#readme" Issues = "https://github.com/pythonanywhere/pythonanywhere-mcp-server/issues" Changelog = "https://github.com/pythonanywhere/pythonanywhere-mcp-server/releases" [tool.pytest.ini_options] pythonpath = ["src/pythonanywhere_mcp_server"]