Create skeleton

This commit is contained in:
Alexander Wainwright
2025-04-13 10:57:04 +10:00
commit 96d10e96f7
7 changed files with 782 additions and 0 deletions

27
pyproject.toml Normal file
View File

@@ -0,0 +1,27 @@
[build-system]
requires = ["setuptools>=40.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stills"
version = "0.1.0"
description = ""
requires-python = ">=3.10"
dependencies = [
]
authors = [
{name = "Alexander Wainwright", email = "code@figtree.dev"},
]
maintainers = [
{name = "Alexander Wainwright", email = "code@figtree.dev"},
]
readme = "README.md"
license = {file = "LICENSE"}
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
stills = "stills.main:main"