-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.3 KB
/
pyproject.toml
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
54
55
56
57
[project]
name = "chronulus-mcp"
version = "0.0.3"
description = "An MCP Server for Chronulus AI Forecasting and Prediction Agents"
readme = "README.md"
authors = [
{ name = "Chronulus AI", email = "[email protected]" },
]
requires-python = ">=3.10"
keywords = ["forecasting", "prediction", "timeseries", "mcp", "llm", "agents"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"mcp[cli]>=1.3.0",
"chronulus>=0.0.11",
"chronulus-core>=0.0.19",
"pandas",
"requests",
]
[dependency-groups]
dev = [
"mcp[cli]>=1.3.0",
"twine>=6.1.0",
]
[tool.setuptools]
package-dir = { "" = "src" }
packages = { find = { where = ["src"] } }
include-package-data = false
[tool.setuptools.package-data]
"chronulus_mcp" = ["_assets/react/*.jsx", "_assets/html/*.html"]
[tool.ruff]
line-length = 150
target-version = "py310"
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
]
ignore = []
[project.scripts]
chronulus-mcp = "chronulus_mcp:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"