Move stuff over from previous incarnation into new frame

Thanks to Simon Wilson for the layout
This commit is contained in:
John Doty 2024-07-08 07:32:37 +09:00
commit 6be6afdbc3
15 changed files with 799 additions and 0 deletions

35
pyproject.toml Normal file
View file

@ -0,0 +1,35 @@
[project]
name = "cry"
version = "0.1"
description = "Command line feed reader"
readme = "README.md"
authors = [{name = "John Doty"}]
license = {text = "MIT"}
requires-python = "==3.12.*"
classifiers = [
"License :: OSI Approved :: MIT"
]
dependencies = [
"feedparser>=6.0.11",
"platformdirs>=4.2.2",
"tomlkit>=0.12.5",
"requests>=2.32.3",
"click>=8.1.7",
]
[project.urls]
Homepage = "https://github.com/decarabas/cry"
Changelog = "https://github.com/decarabas/cry/releases"
Issues = "https://github.com/decarabas/cry/issues"
CI = "https://github.com/decarabas/cry/actions"
[project.entry-points.console_scripts]
cry = "cry.cli:cli"
[project.optional-dependencies]
test = ["pytest"]
[tool.pyright]
exclude = [".venv"]
venvPath = "."
venv = ".venv"