1
0
Fork 0
mirror of synced 2024-06-28 19:10:41 +12:00
bulk-downloader-for-reddit/setup.py

16 lines
448 B
Python
Raw Normal View History

2018-07-13 08:03:00 +12:00
#!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"]}})