- Upgraded Python requirement from ^3.11 to ^3.12. - Changed specific dependencies (pillow, beautifulsoup4, pyyaml, lxml, typer) to use the latest versions by setting them to "*". - Added python-frontmatter as a new dependency with version ^1.1.0.
36 lines
677 B
TOML
36 lines
677 B
TOML
[tool.poetry]
|
|
name = "fundor333-github-io"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Fundor333 <fundor333@fundor333.com>"]
|
|
readme = "README.md"
|
|
packages = [{ include = "fundor333" }]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
feedparser = "*"
|
|
requests = "*"
|
|
python-dotenv = "*"
|
|
weeknotebot = "*"
|
|
pillow = "*"
|
|
beautifulsoup4 = "*"
|
|
pyyaml = "*"
|
|
lxml = "*"
|
|
typer = "*"
|
|
python-frontmatter = "^1.1.0"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pre-commit = "^4.1.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.plugins.dotenv]
|
|
ignore = "false"
|
|
location = ".env"
|
|
|
|
[tool.poetry.requires-plugins]
|
|
poetry-plugin-export = ">=1.8"
|