mirror of
https://github.com/cedricbonhomme/Stegano.git
synced 2025-05-12 17:18:30 +02:00
59 lines
1.4 KiB
TOML
59 lines
1.4 KiB
TOML
[tool.poetry]
|
|
name = "stegano"
|
|
version = "0.9.8"
|
|
description = "A pure Python Steganography module."
|
|
authors = [
|
|
"Cédric Bonhomme <cedric@cedricbonhomme.org>"
|
|
]
|
|
license = "GPL-3.0-or-later"
|
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://sr.ht/~cedric/stegano"
|
|
repository = "https://git.sr.ht/~cedric/stegano"
|
|
documentation = "https://stegano.readthedocs.io"
|
|
|
|
keywords = ["steganography", "security", "stegano"]
|
|
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Science/Research",
|
|
"Topic :: Security",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
|
|
]
|
|
|
|
include = [
|
|
"README.md",
|
|
"COPYING",
|
|
"CHANGELOG.md",
|
|
"docs/**/*",
|
|
"bin/*"
|
|
]
|
|
|
|
[tool.poetry.scripts]
|
|
stegano-lsb = "bin.lsb:main"
|
|
stegano-lsb-set = "bin.lsbset:main"
|
|
stegano-red = "bin.red:main"
|
|
stegano-steganalysis-parity = "bin.parity:main"
|
|
stegano-steganalysis-statistics = "bin.statistics:main"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
pillow = "^6.2.1"
|
|
piexif = "^1.1.3"
|
|
crayons = "^0.3.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
mypy = "^0.750"
|
|
flake8 = "^3.7.9"
|
|
nose2 = "^0.9.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|