You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.5 KiB
45 lines
1.5 KiB
[build-system] |
|
requires = ["setuptools>=61.0", "wheel"] |
|
build-backend = "setuptools.build_meta" |
|
|
|
[project] |
|
name = "image-recognition-mcp" |
|
version = "0.1.0" |
|
description = "An MCP server for AI-powered image analysis using OpenAI Vision API" |
|
readme = "README.md" |
|
requires-python = ">=3.8" |
|
license = {text = "MIT"} |
|
keywords = ["mcp", "modelcontextprotocol", "image", "vision", "openai", "ai"] |
|
authors = [ |
|
{name = "Your Name", email = "your.email@example.com"} |
|
] |
|
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", |
|
"Programming Language :: Python :: 3.12", |
|
] |
|
dependencies = [ |
|
"fastmcp>=2.0.0", |
|
"pillow>=10.0.0", |
|
"openai>=1.0.0", |
|
] |
|
|
|
[project.urls] |
|
Homepage = "https://github.com/yourusername/image-recognition-mcp" |
|
Repository = "https://github.com/yourusername/image-recognition-mcp" |
|
Issues = "https://github.com/yourusername/image-recognition-mcp/issues" |
|
|
|
[project.scripts] |
|
image-recognition-mcp = "image_recognition_server.server:main" |
|
image-recognition-mcp-install = "image_recognition_server.install:main" |
|
|
|
[tool.setuptools.packages.find] |
|
where = ["."] |
|
include = ["image_recognition_server*"] |