Files
CourseWork/setup.py

23 lines
572 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python3
from setuptools import setup, find_packages
setup(
name='stego-app',
version='1.0.0',
author='Петров Игорь ИУ10-24',
description='Steganography application for hiding data in images',
packages=find_packages(),
include_package_data=True,
install_requires=[
'numpy>=2.4.3',
'pillow>=12.1.1',
'scipy>=1.7.0',
],
entry_points={
'console_scripts': [
'stego = main:main',
'stego-gui = main:gui_main',
],
},
python_requires='>=3.8',
)