-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
46 lines (43 loc) · 1.73 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup
import tomli
# Read dependencies from pyproject.toml
with open("pyproject.toml", "rb") as f:
pyproject_data = tomli.load(f)
# Get dependencies from pyproject.toml
dependencies = pyproject_data["project"]["dependencies"]
setup(
name="fastapi-mcp",
version="0.1.4",
description="Automatic MCP server generator for FastAPI applications - converts FastAPI endpoints to MCP tools for LLM integration",
author="Tadata Inc.",
author_email="[email protected]",
packages=["fastapi_mcp"],
python_requires=">=3.10",
install_requires=dependencies,
entry_points={
"console_scripts": [
"fastapi-mcp=fastapi_mcp.cli:app",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Framework :: FastAPI",
],
keywords=["fastapi", "openapi", "mcp", "llm", "claude", "ai", "tools", "api", "conversion"],
project_urls={
"Homepage": "https://github.com/tadata-org/fastapi_mcp",
"Documentation": "https://github.com/tadata-org/fastapi_mcp#readme",
"Bug Tracker": "https://github.com/tadata-org/fastapi_mcp/issues",
"PyPI": "https://pypi.org/project/fastapi-mcp/",
"Source Code": "https://github.com/tadata-org/fastapi_mcp",
"Changelog": "https://github.com/tadata-org/fastapi_mcp/blob/main/CHANGELOG.md",
},
)