24 lines
549 B
TOML
24 lines
549 B
TOML
[project]
|
|
name = "yarss2social"
|
|
version = "0.1.0"
|
|
description = "Yet another RSS 2 Social Publishing app."
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Jeff MacKinnon", email = "jeff@jeffmackinnon.com" }
|
|
]
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"beautifulsoup4>=4.15.0",
|
|
"feedparser>=6.0.12",
|
|
"ipykernel>=7.3.0",
|
|
"mastodon-py>=2.2.1",
|
|
"peewee>=4.2.6",
|
|
"requests>=2.34.2",
|
|
]
|
|
|
|
[project.scripts]
|
|
yarss2social = "yarss2social:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.11.16,<0.12.0"]
|
|
build-backend = "uv_build"
|