Files
STEGOSAURUS-WRECKS/pyproject.toml
T
2026-03-30 10:48:52 -07:00

61 lines
1.6 KiB
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stegosaurus-wrecks"
version = "3.0.0"
description = "🦕 Ultimate Steganography Suite - Encode, Decode, Inject"
readme = "README.md"
license = {text = "AGPL 3.0"}
requires-python = ">=3.9"
authors = [
{name = "STEGOSAURUS WRECKS"}
]
keywords = ["steganography", "lsb", "image", "encoding", "security", "cli", "tui"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Multimedia :: Graphics",
]
dependencies = [
"Pillow>=10.0.0",
"numpy>=1.24.0",
"typer[all]>=0.9.0",
"rich>=13.0.0",
"textual>=0.40.0",
"nicegui>=1.4.0",
"fastapi>=0.100.0",
]
[project.optional-dependencies]
web-legacy = ["streamlit>=1.28.0"]
crypto = ["cryptography>=41.0.0"]
all = [
"streamlit>=1.28.0",
"cryptography>=41.0.0",
]
[project.scripts]
steg = "cli:main_cli"
steg-tui = "tui:main"
steg-web = "webui:main"
# steg-web-legacy requires: streamlit run app.py (no main() entry point)
[project.urls]
Homepage = "https://github.com/elder-plinius/ST3GG"
Repository = "https://github.com/elder-plinius/ST3GG"
[tool.setuptools.packages.find]
where = ["."]