-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
54 lines (45 loc) · 1.29 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
45
46
47
48
49
50
51
52
53
54
[project]
name = "datacommons-mcp"
version = "1.2.0"
description = "Data Commons MCP server."
readme = "README.md"
requires-python = ">=3.11, <3.14"
dependencies = [
"fastapi>=0.115.0",
"uvicorn",
"fastmcp",
"requests",
"datacommons-client>=2.1.6",
"pydantic>=2.11.7",
"pydantic-settings",
"python-dateutil>=2.9.0.post0",
"python-dotenv>=1.1.1",
]
urls = {Homepage = "https://github.com/datacommonsorg/agent-toolkit"}
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.optional-dependencies]
test = [
"pytest>=8.3.4",
"pytest-asyncio>=0.25.3",
"requests-mock>=1.12.1",
]
[project.scripts]
datacommons-mcp = "datacommons_mcp.cli:cli"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
# Exclude auto-detected usage of files (e.g. gitignored files) and rely on explicit package-data
include-package-data = false
[tool.setuptools.packages.find]
where = ["."]
include = ["datacommons_mcp*"]
[tool.setuptools.package-data]
datacommons_mcp = ["**/*.json", "instructions/**/*.md"]