diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..598cb2e --- /dev/null +++ b/setup.py @@ -0,0 +1,15 @@ +#!C:\Users\Ali\AppData\Local\Programs\Python\Python36\python.exe + +## python setup.py build +import sys +from cx_Freeze import setup, Executable + +setup( + name = "Bulk Downloader for Reddit", + version = "1.1.0", + description = "Bulk Downloader for Reddit", + author = "Ali Parlakci", + executables = [Executable("script.py")], + options = {"build_exe": {"packages":["idna","imgurpython", "praw", "requests"]}}) + +