forked from ArkNill/newswatch
-
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.36 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.36 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>=75.0"]
build-backend = "setuptools.build_meta"
[project]
name = "newswatch"
version = "0.1.0"
description = "News monitoring pipeline — collect, extract, search, and track changes across RSS feeds."
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [{ name = "QuartzUnit" }]
keywords = ["news", "rss", "monitoring", "semantic-search", "change-tracking", "llm"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"feedkit>=0.1.0",
"markgrab>=0.1.0",
"embgrep>=0.1.0",
"diffgrab>=0.1.0",
"click>=8.0",
"rich>=13.0",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-asyncio>=0.24", "ruff>=0.9"]
[project.scripts]
newswatch = "newswatch.__main__:main"
[project.urls]
Homepage = "https://github.com/QuartzUnit/newswatch"
Repository = "https://github.com/QuartzUnit/newswatch"
Issues = "https://github.com/QuartzUnit/newswatch/issues"
Documentation = "https://github.com/QuartzUnit/newswatch#readme"
Changelog = "https://github.com/QuartzUnit/newswatch/releases"
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"