-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.27 KB
/
pyproject.toml
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
[project]
name = "django-rss-filter"
version = "0.11.0"
description = "Filter public RSS feeds, remove articles that contain certain keywords or categories."
authors = [
{name = "Kevin Renskers", email = "[email protected]"},
]
license = "MIT"
license-files = [ "LICENSE" ]
readme = "README.md"
keywords = ["rss", "atom", "feed", "filter", "mute", "django"]
requires-python = ">=3.9"
dependencies = [
"django>=3.2.0",
"feedgen>=1.0.0",
"feedparser>=6.0.11",
"httpx>=0.28.1",
]
[dependency-groups]
dev = [
"mypy>=1.15.0",
"pytest>=8.3.5",
"pytest-django>=4.10.0",
"ruff>=0.11.2",
]
[project.urls]
Homepage = "https://github.com/loopwerk/django-rss-filter/"
Repository = "https://github.com/loopwerk/django-rss-filter.git"
Issues = "https://github.com/loopwerk/django-rss-filter/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.hatch.build.targets.wheel]
packages = ["rssfilter"]
[tool.ruff]
line-length = 120
lint.extend-select = ["I", "N"]
[tool.mypy]
disable_error_code = ["import-untyped"]
warn_redundant_casts = true
check_untyped_defs = true
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
python_files = "test*.py"
filterwarnings = ["ignore::DeprecationWarning"]