-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpyproject.toml
87 lines (73 loc) · 2.02 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "Newspipe"
version = "11.2.0"
description = "Newspipe is a web news aggregator."
authors = [
{name = "Cédric Bonhomme", email = "[email protected]"}
]
license = "AGPL-3.0-or-later"
readme = "README.md"
keywords = ["Newspipe", "RSS", "Atom", "Aggregator", "News"]
requires-python = ">=3.10,<4.0"
dependencies = [
"pyvulnerabilitylookup (>=2.2.0)",
"aiohttp (>=3.11.2)",
"requests (>=2.32.3)",
"chardet (>=5.2.0)",
"requests-futures (>=1.0.2)",
"beautifulsoup4 (>=4.12.3)",
"lxml (>=5.3.0)",
"opml (>=0.5)",
"SQLAlchemy (>=2.0.36)",
"alembic (>=1.14.0)",
"Flask (>=3.1.0)",
"Flask-SQLAlchemy (>=3.0.3)",
"Flask-Login (>=0.6.3)",
"Flask-Principal (>=0.4.0)",
"Flask-WTF (>=1.1.1)",
"Flask-RESTful (>=0.3.10)",
"Flask-paginate (>=2024.4.12)",
"Flask-Babel (>=4.0.0)",
"Flask-Migrate (>=3.0.1)",
"WTForms (>=3.1.1)",
"python-dateutil (>=2.8.2)",
"psycopg2-binary (>=2.9.10)",
"flask-talisman (>=1.1.0)",
"feedparser (>=6.0.11)",
"mypy (>=1.13.0)",
"ldap3 (>=2.9.1)",
"pyvulnerabilitylookup (>=2.2.0)",
]
[project.urls]
Homepage = "https://github.com/cedricbonhomme/newspipe"
Repository = "https://github.com/cedricbonhomme/newspipe"
Changelog = "https://github.com/cedricbonhomme/newspipe/blob/master/CHANGELOG.md"
[tool.poetry.group.dev.dependencies]
sqlalchemy-schemadisplay = "^1.3"
flake8 = "^6.1.0"
pre-commit = "^3.5.0"
black = "^24.10.0"
pyupgrade = "^3.15.0"
pip-audit = "^2.7.3"
types-python-dateutil = "^2.8.19.14"
[tool.poetry.group.dev]
optional = true
[tool.mypy]
python_version = "3.13"
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = true
strict_optional = true
no_implicit_optional = true
warn_unused_ignores = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unreachable = true
show_error_context = true
pretty = true
exclude = "migrations|docs"
[tool.isort]
profile = "black"