-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
75 lines (67 loc) · 1.93 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
68
69
70
71
72
73
74
75
[project]
name = "django-rss-filter"
version = "0.14.1"
description = "Filter public RSS feeds, remove articles that contain certain keywords or categories."
authors = [
{name = "Kevin Renskers", email = "kevin@loopwerk.io"},
]
license = "MIT"
license-files = [ "LICENSE" ]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"django>=4.2.0",
"feedgen>=1.0.0",
"feedparser>=6.0.11",
"httpx>=0.28.1",
]
keywords = ["rss", "atom", "feed", "filter", "mute", "django"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Framework :: Django :: 6.0",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
]
[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 = ["uv_build>=0.7.19,<0.8.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "rssfilter"
module-root = ""
[tool.uv]
package = true
[tool.ruff]
line-length = 120
lint.extend-select = ["I", "N"]
[tool.mypy]
disable_error_code = ["import-untyped"]
exclude = ["migrations/"]
warn_redundant_casts = true
check_untyped_defs = true
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
python_files = "test*.py"
filterwarnings = ["ignore::DeprecationWarning"]