Skip to content

Commit

Permalink
SIRED: lo separo en el instalador
Browse files Browse the repository at this point in the history
  • Loading branch information
reingart committed Jul 11, 2015
1 parent d98c661 commit 436d5af
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
#import trazafito
#import trazavet
#import padron
#import sired

# herramientas opcionales a compilar y empaquetar:
try:
Expand Down Expand Up @@ -184,7 +185,7 @@
# legacy webservices & utilities:
if 'pyafipws' in globals():
kwargs['com_server'] += ["pyafipws"]
kwargs['console'] += ['rece.py', 'receb.py', 'recex.py', 'rg1361.py', 'wsaa.py', 'wsfex.py', 'wsbfe.py']
kwargs['console'] += ['rece.py', 'receb.py', 'recex.py', 'wsaa.py', 'wsfex.py', 'wsbfe.py']

# visual application
if 'pyrece' in globals():
Expand Down Expand Up @@ -465,6 +466,15 @@
__version__ += "+padron_" + padron.__version__
#HOMO &= padron.HOMO

if 'sired' in globals():
kwargs['com_server'] += [
Target(module=sired, modules="sired", create_exe=True, create_dll=True),
]
kwargs['console'] += [
Target(module=sired, script='sired.py', dest_base="sired_cli"),
]
__version__ += "+sired_" + sired.__version__

# custom installer:
kwargs['cmdclass'] = {"py2exe": build_installer}

Expand Down

0 comments on commit 436d5af

Please sign in to comment.