First public commit.

This commit is contained in:
The Dust Council 2026-07-03 19:35:35 -07:00
parent 2a48f52979
commit 4bac9d83ed
288 changed files with 18417 additions and 1076 deletions

View file

@ -3,9 +3,9 @@ requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "c64view"
name = "8bitlenser"
version = "0.1.0"
description = "Convert modern images into Commodore 64 disk images with a built-in viewer"
description = "8 Bit Lenser: convert modern images into retro-computer disk images with a built-in viewer"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
@ -19,13 +19,20 @@ dependencies = [
gui = ["PyQt5>=5.15"]
[project.scripts]
c64view-cli = "c64view.cli:main"
8bitlenser-cli = "lenser.cli:main"
8bitlenser-slideshow = "lenser.slideshow_cli:main"
[project.gui-scripts]
c64view = "c64view.gui:main"
8bitlenser = "lenser.gui:main"
[tool.setuptools.packages.find]
include = ["c64view*"]
include = ["lenser*"]
[tool.setuptools.package-data]
"c64view.viewer" = ["*.s"]
"lenser.viewer" = ["*.s", "*.i"]
"lenser.ansi" = ["*.bin"]
"lenser.c128.viewer" = ["*.s"]
"lenser.bbc.viewer" = ["*.s"]
"lenser.iigs.viewer" = ["*.s"]
"lenser.atari.viewer" = ["*.s"]
"lenser.apple.viewer" = ["*.s"]