-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.32 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "codesurface"
version = "0.7.0"
description = "MCP server that indexes a codebase's public API at startup and serves it via compact tool responses. Pluggable parsers for C#, Go, Java, TypeScript, Python, and more."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
authors = [
{name = "Codeturion", email = "fuatcankoseoglu@gmail.com"},
]
keywords = ["mcp", "csharp", "go", "golang", "typescript", "python", "java", "api", "index", "code-intelligence"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"mcp[cli]>=1.8.0",
]
[project.urls]
Homepage = "https://github.com/Codeturion/codesurface"
Repository = "https://github.com/Codeturion/codesurface"
Issues = "https://github.com/Codeturion/codesurface/issues"
[project.scripts]
codesurface = "codesurface.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/codesurface"]