Move stuff over from previous incarnation into new frame
Thanks to Simon Wilson for the layout
This commit is contained in:
commit
6be6afdbc3
15 changed files with 799 additions and 0 deletions
35
pyproject.toml
Normal file
35
pyproject.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue