mirror of
https://github.com/kk7ds/chirp
synced 2026-08-13 17:51:36 -04:00
59 lines
1.9 KiB
Python
59 lines
1.9 KiB
Python
#!/usr/bin/python
|
|
#
|
|
# Copyright 2008 Dan Smith <dsmith@danplanet.com>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
from distutils.core import setup
|
|
import sys
|
|
import os
|
|
from chirp import CHIRP_VERSION
|
|
|
|
try:
|
|
# if this doesn't work, try import modulefinder
|
|
import py2exe.mf as modulefinder
|
|
import win32com
|
|
for p in win32com.__path__[1:]:
|
|
modulefinder.AddPackagePath("win32com", p)
|
|
for extra in ["win32com.shell"]: #,"win32com.mapi"
|
|
__import__(extra)
|
|
m = sys.modules[extra]
|
|
for p in m.__path__[1:]:
|
|
modulefinder.AddPackagePath(extra, p)
|
|
except ImportError:
|
|
# no build path setup, no worries.
|
|
pass
|
|
|
|
if os.name == "win32":
|
|
import py2exe
|
|
opts = {
|
|
"py2exe" : {
|
|
"includes" : "pango,atk,gobject,cairo,pangocairo,win32gui,win32com,win32com.shell",
|
|
"compressed" : 1,
|
|
"optimize" : 2,
|
|
"bundle_files" : 3,
|
|
}
|
|
}
|
|
else:
|
|
opts = {}
|
|
|
|
setup(name="chirp",
|
|
windows=[{'script' : "chirpw"}],
|
|
console=[{'script' : "chirp.py"}],
|
|
packages=['chirp', 'chirpui'],
|
|
version=CHIRP_VERSION,
|
|
scripts=['chirpw'],
|
|
data_files=[('/usr/share/chirp', ['chirp.xsd', 'chirp_memory.xsd', 'chirp_banks.xsd']),
|
|
('/usr/share/applications', ['chirp.desktop'])],
|
|
options=opts)
|