2018-07-13 04:03:00 +08:00
|
|
|
#!C:\Users\Ali\AppData\Local\Programs\Python\Python36\python.exe
|
|
|
|
|
|
|
|
## python setup.py build
|
|
|
|
import sys
|
|
|
|
from cx_Freeze import setup, Executable
|
2018-07-13 19:12:17 +08:00
|
|
|
from script import __version__
|
|
|
|
|
|
|
|
options = {
|
|
|
|
"build_exe": {
|
|
|
|
"packages":[
|
2020-06-03 23:10:25 +08:00
|
|
|
"idna", "praw", "requests", "multiprocessing"
|
2018-07-13 19:12:17 +08:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if sys.platform == "win32":
|
|
|
|
executables = [Executable(
|
|
|
|
"script.py",
|
|
|
|
targetName="bulk-downloader-for-reddit.exe",
|
|
|
|
shortcutName="Bulk Downloader for Reddit",
|
|
|
|
shortcutDir="DesktopFolder"
|
|
|
|
)]
|
|
|
|
|
|
|
|
elif sys.platform == "linux":
|
|
|
|
executables = [Executable(
|
|
|
|
"script.py",
|
|
|
|
targetName="bulk-downloader-for-reddit",
|
|
|
|
shortcutName="Bulk Downloader for Reddit",
|
|
|
|
shortcutDir="DesktopFolder"
|
|
|
|
)]
|
2018-07-13 04:03:00 +08:00
|
|
|
|
|
|
|
setup(
|
2018-07-13 19:12:17 +08:00
|
|
|
name = "Bulk Downloader for Reddit",
|
|
|
|
version = __version__,
|
|
|
|
description = "Bulk Downloader for Reddit",
|
|
|
|
author = "Ali Parlakci",
|
|
|
|
author_email="parlakciali@gmail.com",
|
|
|
|
url="https://github.com/aliparlakci/bulk-downloader-for-reddit",
|
|
|
|
classifiers=(
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Environment :: Console",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
),
|
|
|
|
executables = executables,
|
|
|
|
options = options
|
|
|
|
)
|
2018-07-13 04:03:00 +08:00
|
|
|
|
|
|
|
|