-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·28 lines (25 loc) · 944 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from distutils.core import setup
import sys
import os
if sys.platform.startswith('win'):
import py2exe
setup(name='chomikDownloader',
version='0.1.2',
author='adam_gr',
author_email='adam_gr [at] gazeta.pl',
description='Downloads files from your account chomikuj.pl',
package_dir = {'chomikdownloader' : 'src'},
packages = ['chomikdownloader'],
options = {"py2exe" : {
"compressed" : True,
"ignores" : ["email.Iterators", "email.Generator"],
"bundle_files" : 1
},
"sdist" : {
'formats': 'zip'
}
},
scripts = ['chomik_downloader'],
console = ['chomik_downloader'],
zipfile = None
)