summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..0a4851f
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,20 @@
+[build-system]
+requires = ["setuptools>=61"]
+build-backend = "setuptools.build_meta"
+
+[project]
+name = "sailfish-devel-mcp"
+version = "0.1.0"
+description = "Host-side MCP server for Sailfish OS development workflows"
+readme = "README.md"
+requires-python = ">=3.9"
+license = { text = "0BSD" }
+authors = [{ name = "Andrew Branson" }]
+dependencies = []
+
+[project.scripts]
+sailfish-devel-mcp = "sailfish_devel_mcp.server:main"
+
+[tool.setuptools.packages.find]
+where = ["src"]
+