Only output file download error text when logging is turned up.
[clinton/thingy_grabber.git] / setup.py
1 from cx_Freeze import setup, Executable
2
3 # Dependencies are automatically detected, but it might need
4 # fine tuning.
5 buildOptions = dict(packages = [], excludes = [])
6
7 base = 'Console'
8
9 executables = [
10 Executable('thingy_grabber.py', base=base)
11 ]
12
13
14 # Usage: python setup.py build
15 setup(name='Thingy Grabber',
16 version = '0.6.2',
17 description = 'Thingiverse Grabber',
18 options = dict(build_exe = buildOptions),
19 executables = executables, requires=['py7zr', 'requests'])