refactor the project up to modern standards

This commit is contained in:
Johann Dreo 2026-04-04 14:02:06 +02:00
commit cee043b6d2
2 changed files with 51 additions and 24 deletions

23
pyproject.toml Normal file
View file

@ -0,0 +1,23 @@
[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",
]
[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*"]