-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.73 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
[project]
name = "subscope"
version = "0.2.0"
description = "Daily subreddit scanner: surfaces pain-pattern posts (pricing rage, churn, build-vs-buy, alternative-seeking) inside your Claude Code session. Pattern-aware, human-in-the-loop."
authors = [{ name = "Dan Colta" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
keywords = ["reddit", "subreddit-scanner", "pain-patterns", "social-listening", "claude-code", "claude-code-plugin", "human-in-the-loop"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pyyaml>=6.0",
"certifi>=2024.7.4",
]
[project.optional-dependencies]
# Provider-agnostic LLM via OpenAI-compatible client.
# Works with: OpenAI, Anthropic (/openai/v1), Groq, OpenRouter, Together,
# Fireworks, Anyscale, local Ollama, any OpenAI-compatible endpoint.
llm = ["openai>=1.30.0,<2.0"]
# Notion daily-triage sync
notion = ["notion-client>=2.2.0,<3.0"]
# Dev / test
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.6.0",
]
[project.scripts]
subscope = "subscope.cli:main"
[project.urls]
Homepage = "https://github.com/dancolta/subscope"
Repository = "https://github.com/dancolta/subscope"
Issues = "https://github.com/users/dancolta/projects/7"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["engine"]
include = ["subscope*"]
[tool.pytest.ini_options]
testpaths = ["engine/tests"]
pythonpath = ["engine"]
[tool.ruff]
line-length = 100
target-version = "py310"