-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
49 lines (43 loc) · 1.56 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "crowdcheck"
version = "0.1.0"
description = "The contestation layer for last30days: turn engagement-ranked evidence into a consensus/confidence map an AI agent can act on."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "crowdcheck contributors" }]
keywords = [
"ai", "agents", "mcp", "last30days", "hallucination", "grounding",
"contestation", "consensus", "confidence", "engagement", "reddit", "social",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Typing :: Typed",
]
# Core is zero-dependency on purpose: `pip install` + `crowdcheck --demo`
# runs with nothing else installed.
dependencies = []
[project.optional-dependencies]
# MCP server interface (the headline surface).
mcp = ["mcp>=1.2.0"]
# Recommended for live search on macOS: a CA bundle so HTTPS calls don't fail
# with CERTIFICATE_VERIFY_FAILED. `pip install "crowdcheck[native]"`.
native = ["certifi"]
dev = ["pytest>=7"]
[project.scripts]
crowdcheck = "crowdcheck.cli:main"
crowdcheck-mcp = "crowdcheck.mcp_server:main"
[project.urls]
Homepage = "https://github.com/avnath13/crowdcheck"
Repository = "https://github.com/avnath13/crowdcheck"
"Powered by" = "https://github.com/mvanhorn/last30days-skill"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
crowdcheck = ["py.typed", "../examples/*.json"]