-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 951 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 951 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
29
30
31
32
33
34
35
36
37
38
39
40
41
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qmcp"
version = "0.4.5"
description = "MCP Server for q/kdb+ integration"
authors = [{name = "Gabi Teodoru", email = "gabiteodoru@gmail.com"}]
license = "MIT"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"mcp",
"numpy>=1.8.0",
"pandas",
"more_itertools",
"psutil",
"parso",
"gabiteodoru-sugar",
"gabiteodoru-qpython",
"gabiteodoru-qython",
"gabiteodoru-parseq",
]
[project.urls]
"Homepage" = "https://github.com/gabiteodoru/qmcp"
"Bug Tracker" = "https://github.com/gabiteodoru/qmcp/issues"
"Source Code" = "https://github.com/gabiteodoru/qmcp"
[project.scripts]
qmcp = "qmcp.server:main"
[tool.setuptools.packages.find]
exclude = ["private_tests*", "bak*"]
[tool.setuptools.exclude-package-data]
"*" = ["*.sh"]
[tool.setuptools.package-data]
qmcp = ["custom_grammar.txt"]