-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 842 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 842 Bytes
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
from setuptools import setup, find_packages
setup(
name="mcp-think-tool",
version="0.1.0",
description="An MCP server implementing the think tool for Claude and other LLMs",
author="Your Name",
author_email="your.email@example.com",
url="https://github.com/yourusername/mcp-think-tool",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"mcp>=1.2.0",
],
python_requires=">=3.10",
entry_points={
"console_scripts": [
"mcp-think-tool=think_tool.server:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
],
)