-
Notifications
You must be signed in to change notification settings - Fork 93
/
setup.py
51 lines (48 loc) · 1.79 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
with open("README.md") as readme_file:
readme = readme_file.read()
requirements = [
"Click", "Pillow", "numpy; python_version>='3.10'",
"numpy<2.1.0; python_version>='3.9' and python_version<'3.10'",
"numpy<1.25.0; python_version>='3.8' and python_version<'3.9'"
]
setup(
author="Ryan Gibson",
author_email="[email protected]",
name="stego-lsb",
version="1.6.3",
description="Least Significant Bit Steganography for bitmap images (.bmp "
"and .png), WAV sound files, and byte sequences. Simple LSB "
"Steganalysis (LSB extraction) for bitmap images.",
keywords="steganography steganalysis",
license="MIT",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/ragibson/Steganography",
install_requires=requirements,
entry_points="""
[console_scripts]
stegolsb=stego_lsb.cli:main
""",
package_data={"stego_lsb": ["py.typed"]},
include_package_data=True,
packages=find_packages(include=["stego_lsb"]),
zip_safe=False,
python_requires=">=3.8",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
],
)