-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (102 loc) · 2.43 KB
/
pyproject.toml
File metadata and controls
110 lines (102 loc) · 2.43 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[project]
name = "oldnews"
version = "1.2.0"
description = "A terminal-based client for TheOldReader"
readme = "README.md"
authors = [
{ name = "Dave Pearson", email = "davep@davep.org" }
]
requires-python = ">=3.12"
license = "GPL-3.0-or-later"
keywords = [
"atom",
"client",
"Google Reader",
"RSS",
"TheOldReader",
"terminal",
"news-reader",
"news",
]
dependencies = [
"bagofstuff>=0.2.0",
"beautifulsoup4>=4.14.3",
"html-to-markdown>=2.15.0",
"httpx>=0.28.1",
"humanize>=4.15.0",
"oldas>=1.0.0",
"pyperclip>=1.11.0",
"textual>=7.4.0",
"textual-autocomplete>=4.0.6",
"textual-enhanced>=1.3.0",
"tortoise-orm>=0.25.4",
"types-pyperclip>=1.9.0.20250801",
"xdg-base-dirs>=6.0.2",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet",
"Topic :: Terminals",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/davep/oldnews"
Repository = "https://github.com/davep/oldnews"
Documentation = "https://github.com/davep/oldnews/blob/main/README.md"
Source = "https://github.com/davep/oldnews"
Issues = "https://github.com/davep/oldnews/issues"
Discussions = "https://github.com/davep/oldnews/discussions"
[project.scripts]
oldnews = "oldnews.__main__:main"
[build-system]
requires = ["uv_build>=0.9.4"]
build-backend = "uv_build"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.pyright]
venvPath="."
venv=".venv"
exclude=[".venv"]
[dependency-groups]
dev = [
"codespell>=2.4.1",
"markdown-exec>=1.12.1",
"mkdocs-material>=9.7.1",
"mypy>=1.18.2",
"pre-commit>=4.3.0",
"ruff>=0.14.0",
"textual-dev>=1.8.0",
]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = [
# I think try...except...pass reads far better.
"SIM105",
]
[tool.ruff.lint.pycodestyle]
max-line-length = 120