| Revision 268,
873 bytes
checked in by marc, 3 years ago
(diff) |
|
Fixed fatal PyGTK bug on some versions; Updated years, emails, changelog, README, version numbers for new release; fixed a fatal pynotify bug; fixed window width for some themes
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/usr/bin/env python |
|---|
| 2 | # -*- coding: utf-8 -*- |
|---|
| 3 | |
|---|
| 4 | from distutils.core import setup |
|---|
| 5 | import glob |
|---|
| 6 | import py2exe |
|---|
| 7 | |
|---|
| 8 | zipfile = None, |
|---|
| 9 | compressed = 1, |
|---|
| 10 | bundle_files = 2, |
|---|
| 11 | opts = { |
|---|
| 12 | "py2exe": { |
|---|
| 13 | "includes": "pygtk,pango,gobject,twisted, cairo, pangocairo, atk", |
|---|
| 14 | "dist_dir": "dist", |
|---|
| 15 | } |
|---|
| 16 | } |
|---|
| 17 | |
|---|
| 18 | setup( |
|---|
| 19 | name = "Itaka", |
|---|
| 20 | version = "1.0", |
|---|
| 21 | description = 'On-demand screen capture server', |
|---|
| 22 | author = 'Marc E.', |
|---|
| 23 | author_email = 'santusmarc@users.sf.net', |
|---|
| 24 | url = 'http://itaka.jardinpresente.com.ar', |
|---|
| 25 | license = 'GPL', |
|---|
| 26 | windows = [ |
|---|
| 27 | { |
|---|
| 28 | "script": "itaka.py", |
|---|
| 29 | "icon_resources": [(1, "share\images\itaka.ico")] |
|---|
| 30 | }], |
|---|
| 31 | options = opts, |
|---|
| 32 | data_files=[ |
|---|
| 33 | ("images", |
|---|
| 34 | glob.glob("share\images\\*.png")), |
|---|
| 35 | 'uigtk.py', |
|---|
| 36 | 'config.py', |
|---|
| 37 | 'error.py', |
|---|
| 38 | 'console.py', |
|---|
| 39 | 'server.py', |
|---|
| 40 | 'screenshot.py', |
|---|
| 41 | ] |
|---|
| 42 | |
|---|
| 43 | ) |
|---|
Note: See
TracBrowser
for help on using the repository browser.