-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
67 lines (60 loc) · 1.6 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
55
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "opencontext"
version = "1.0.0"
description = "Extensible MCP framework template for civic data platforms"
authors = [
{name = "Srihari Raman", email = "srihari.raman@outlook.com"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.0.0",
"PyYAML>=6.0",
"tenacity>=8.0.0",
"python-json-logger>=2.0.0",
"sqlparse>=0.4.4",
"aiohttp>=3.13.4",
"pygments>=2.20.0",
"requests>=2.33.0",
"pre-commit>=4.5.1",
"boto3>=1.42.83",
"botocore>=1.42.83",
"click>=8.3.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.0.0",
"pytest-xdist>=3.0.0",
"ruff>=0.1.0",
"pip-audit>=2.0.0",
]
cli = [
"typer>=0.9.0",
"questionary>=2.0.0",
"rich>=13.0.0",
]
[project.scripts]
opencontext = "cli.main:app"
[project.urls]
Homepage = "https://github.com/thealphacubicle/OpenContext"
Documentation = "https://github.com/thealphacubicle/OpenContext/blob/main/README.md"
Repository = "https://github.com/thealphacubicle/OpenContext"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["core*", "server*", "plugins*", "custom_plugins*", "cli*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[tool.coverage.run]
# Exclude hard-to-test modules from coverage (formatters, integration-heavy plugin code)
omit = [
"*/tests/*",
"*/core/logging_utils.py",
"*/plugins/ckan/plugin.py",
]