26 lines
570 B
TOML
26 lines
570 B
TOML
[project]
|
|
name = "forthlift"
|
|
version = "0.1.0"
|
|
description = "A command line application to post sequences of text lines on social media"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"argparse>=1.4.0",
|
|
"configparser>=7.2.0",
|
|
"datetime>=6.0",
|
|
"mastodon-py>=2.1.4",
|
|
"rich>=14.3.3",
|
|
"toml>=0.10.2",
|
|
]
|
|
|
|
[project.scripts]
|
|
forthlift = "forthlift.forthlift:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
include = ["forthlift*"]
|
|
|