-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.28 KB
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
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rockfish-mcp"
version = "0.1.0"
description = "MCP server for Rockfish API"
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"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",
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.27.0",
"pydantic>=2.8.0",
"python-dotenv>=1.0.0",
"rockfish[labs]>=0.44.0"
]
[project.optional-dependencies]
dev = [
"isort>=5.13.2",
"black>=24.10.0",
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"PyYAML>=6.0"
]
[project.scripts]
rockfish-mcp = "rockfish_mcp.server:cli"
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
Homepage = "https://github.com/yourusername/rockfish-mcp"
Repository = "https://github.com/yourusername/rockfish-mcp"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "session"