We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18fe01f commit bb88b40Copy full SHA for bb88b40
README.md
@@ -26,3 +26,10 @@ Run in command line:
26
```
27
$ python src/tools/recovery.py [input.xlsx] [output.xlsx]
28
29
+
30
+Distribute as `.exe` (only for Windows):
31
32
+```
33
+$ # install [py2exe](http://www.py2exe.org/)
34
+$ python src/setup.py py2exe
35
src/setup.py
@@ -0,0 +1,21 @@
1
+#!/usr/bin/env python
2
+# -*- coding: UTF-8 -*-
3
4
+from __future__ import absolute_import
5
+from __future__ import division
6
+from __future__ import print_function
7
8
+from distutils.core import setup
9
10
+import py2exe
11
12
13
+setup(name='excel-password-recovery',
14
+ windows=[{'script': 'src/gui-main.py'}],
15
+ options={
16
+ 'py2exe': {
17
+ 'includes': ['Tkinter', 'tkFileDialog',
18
+ 'tkMessageBox', 'tools']
19
+ }
20
+ },
21
+ )
0 commit comments