-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.58 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rsstui"
version = "1.0.0"
description = "RSS reader TUI application built with Textual"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{name = "yehorscode"}
]
keywords = ["rss", "feed", "reader", "tui", "terminal", "textual", "news"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary",
"Topic :: Terminals",
"Environment :: Console :: Curses",
]
dependencies = [
"textual>=0.41.0",
"feedparser>=6.0.0",
"aiofiles>=23.0.0",
"aiohttp>=3.8.0",
"html2text>=2025.4.15",
]
[project.optional-dependencies]
dev = [
"textual-dev>=1.0.0",
]
[project.scripts]
rsstui = "rsstui.app:main"
[project.urls]
Homepage = "https://github.com/yehorscode/RssTUI"
"Bug Reports" = "https://github.com/yehorscode/RssTUI/issues"
"Source" = "https://github.com/yehorscode/RssTUI"
[tool.setuptools.packages.find]
where = ["."]
include = ["rsstui*"]
[tool.setuptools.package-data]
rsstui = ["styles/*.tcss"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
# This tells setuptools to read from pyproject.toml