- Updated dependencies in `pyproject.toml` to use the latest versions. - Updated `requirements.txt` to reflect new versions for certifi, python-dotenv, and urllib3. - Added new syndication JSON files for recent posts. - Added new webmention data for a post related to "Devil May Cry by Netflix". - Updated multiple character image files in the static directory.
29 lines
559 B
TOML
29 lines
559 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.11"
|
|
feedparser = "*"
|
|
requests = "*"
|
|
python-dotenv = "*"
|
|
|
|
|
|
[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"
|