-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.08 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
[project]
name = "lazyfeed"
version = "0.5.9"
description = "lazyfeed is a fast and simple terminal base RSS/Atom reader built using textual."
authors = [{ name = "dnlzrgz", email = "[email protected]" }]
license = "MIT"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"feedparser>=6.0.11",
"rich>=13.8.1",
"textual>=0.79.1",
"sqlalchemy>=2.0.34",
"pydantic-settings>=2.5.2",
"aiohttp[speedups]>=3.10.5",
"markdownify>=0.14.1",
"selectolax>=0.3.27",
"click>=8.1.8",
]
[project.urls]
homepage = "https://dnlzrgz.com/projects/lazyfeed/"
source = "https://github.com/dnlzrgz/lazyfeed"
issues = "https://github.com/dnlzrgz/lazyfeed/issues"
releases = "https://github.com/dnlzrgz/lazyfeed/releases"
[project.scripts]
lazyfeed = "lazyfeed:main.main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"commitizen>=3.29.0",
"ruff>=0.6.4",
"textual-dev>=1.6.1",
"pytest-aiohttp>=1.0.5",
"pytest-asyncio>=0.24.0",
"pytest>=8.3.3",
"pre-commit>=4.0.1",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"