cry/pyproject.toml
2024-07-08 07:32:37 +09:00

35 lines
776 B
TOML

[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"