From 6e2c69d053d0952ed503ff77dca681d111e1421b Mon Sep 17 00:00:00 2001 From: Ali Parlakci Date: Thu, 12 Jul 2018 00:01:02 +0300 Subject: [PATCH] Initial commit --- setup.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..2bb5e54 --- /dev/null +++ b/setup.py @@ -0,0 +1,11 @@ +#!C:\Users\Ali\AppData\Local\Programs\Python\Python36\python.exe +import sys +from cx_Freeze import setup, Executable + +setup( + name = "Bulk Downloader for Reddit", + version = "1.0.1", + description = "Bulk Downloader for Reddit", + executables = [Executable("script.py")], + options = {"build_exe": {"packages":["idna","imgurpython", "praw", "requests"]}}) +