Files
CourseWork/setup.py
Likaon ce89043fb8 Финальные изменения и добавления:
Теперь можно установить приложение на рабочий стол
Кардинально изменил README
2026-05-24 01:13:47 +03:00

24 lines
649 B
Python
Raw Permalink 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',
)