Первый коммит

This commit is contained in:
Ilia Miheev
2025-07-22 18:35:10 +03:00
commit c127b3398d
7 changed files with 119 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
from setuptools import setup, find_packages
setup(
name='icreate-exe',
version='1.0.0',
description='Приложение для создания exe файла из .py',
long_description=open('./README.md', encoding='utf8').read(),
long_description_content_type='text/markdown',
author='Ilia Miheev',
author_email='strict-swept-unify@duck.com',
packages=find_packages(),
license='MIT',
install_requires=[
'pyinstaller'
],
entry_points={
'console_scripts': [
'icreate-exe=icreateExe.icreateExe:icreateExe',
],
},
)