tootapalooza/pyproject.toml

31 lines
838 B
TOML
Raw Permalink Normal View History

2022-11-25 14:03:24 -05:00
[project]
2022-11-27 09:09:18 -05:00
name = "tootapalooza"
2022-11-25 14:03:24 -05:00
version = "1.0"
2022-11-27 09:09:18 -05:00
authors = [{ name="Paco Hope", email="tootapalooza@filter.paco.to" } ]
2022-11-25 14:03:24 -05:00
description = "Fill a mastodon public timeline with public toots from bots who post gutenberg open texts."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
2022-12-04 11:24:19 -05:00
dependencies = [
"build",
"Mastodon.py",
"python-dotenv",
"toml"
]
2022-11-25 14:03:24 -05:00
[project.urls]
2022-11-27 09:09:18 -05:00
"Homepage" = "https://git.paco.to/nick/tootapalooza"
"Bug Tracker" = "https://git.paco.to/nick/tootapalooza/issues"
2022-11-25 14:03:24 -05:00
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
2022-11-27 09:09:18 -05:00
tootapalooza = "tootapalooza.cli:main"