1
0
Fork 0
mirror of synced 2024-06-02 10:24:39 +12:00

Initial commit

This commit is contained in:
Ali Parlakci 2018-07-12 23:03:00 +03:00
parent 50a77f6ba5
commit 7dbc83fdce

15
setup.py Normal file
View file

@ -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"]}})