-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.31 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
[build-system]
requires = ["setuptools>=77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pythonanywhere-mcp-server"
version = "0.0.10"
description = "PythonAnywhere Model Context Protocol Server"
authors = [
{name = "PythonAnywhere Developers", email = "developers@pythonanywhere.com"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"pythonanywhere-core>=0.3.0",
"mcp[cli]",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Utilities",
]
license = "MIT"
[project.optional-dependencies]
test = [
"pytest",
"pytest-mock",
]
[project.scripts]
pythonanywhere-mcp-server = "pythonanywhere_mcp_server.__main__:main"
[project.urls]
Homepage = "https://github.com/pythonanywhere/pythonanywhere-mcp-server"
Repository = "https://github.com/pythonanywhere/pythonanywhere-mcp-server"
Documentation = "https://github.com/pythonanywhere/pythonanywhere-mcp-server#readme"
Issues = "https://github.com/pythonanywhere/pythonanywhere-mcp-server/issues"
Changelog = "https://github.com/pythonanywhere/pythonanywhere-mcp-server/releases"
[tool.pytest.ini_options]
pythonpath = ["src/pythonanywhere_mcp_server"]