/
ilya.petrash
/
SimplePyScripts
Обзор
Документация
Войти
/
ilya.petrash
/
SimplePyScripts
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
play_url_mp3/setup.py
19 строк
515 B
gil9red
Refactoring. Using black code style
02 июн 2023, 16:49
02 июн 2023, 16:49
f324d9c
Код
Авторство
О чём код?
# -*- coding: utf-8 -*- # A very simple setup script to create a single executable # # Run the build process by running the command 'python setup.py build' # # If everything works well you should find a subdirectory in the build # subdirectory that contains the files needed to run the script without Python from cx_Freeze import setup, Executable executables = [Executable("play_url_mp3.py")] setup( name="play_url_mp3", version="0.1", description="play_url_mp3.py", executables=executables, )