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

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "image-recognition-mcp"
version = "0.2.0"
description = "An MCP server for AI-powered image analysis and generation using OpenAI Vision API and DALL-E"
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://git.enne2.net/enne2/mcp-image-server.git"
Repository = "https://git.enne2.net/enne2/mcp-image-server.git"
Issues = "https://git.enne2.net/enne2/mcp-image-server.git"
[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*"]