Changeset 1658

Show
Ignore:
Timestamp:
07/28/04 15:00:02 (20 years ago)
Author:
jalet
Message:

Now takes care of .sxi and .sxc files if any

Location:
pykota/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/MANIFEST.in

    r1600 r1658  
    22recursive-include po README *.po *.mo *.pot 
    33recursive-include man README *.sh *.1 
    4 recursive-include docs README *.sgml *.png *.pdf *.html *.sxw 
     4recursive-include docs README *.sgml *.png *.pdf *.html *.sx? 
    55recursive-include cgi-bin README *.cgi 
    66recursive-include conf README *.sample 
     
    1111recursive-include contributed README *.pl *.sh *.py 
    1212recursive-include stylesheets README *.css 
    13 recursive-include openoffice README *.png *.sxw *.sxc *.pdf 
     13recursive-include openoffice README *.png *.sx? *.pdf 
    1414recursive-include tests README *.ps.gz *.sh 
  • pykota/trunk/setup.py

    r1647 r1658  
    2424# 
    2525# $Log$ 
     26# Revision 1.49  2004/07/28 13:00:02  jalet 
     27# Now takes care of .sxi and .sxc files if any 
     28# 
    2629# Revision 1.48  2004/07/27 07:14:24  jalet 
    2730# Now warns the user if pyosd is not present 
     
    441444 
    442445docfiles = glob.glob(os.sep.join(["docs", "*.pdf"])) 
     446docfiles += glob.glob(os.sep.join(["docs", "*.sx?"])) 
    443447data_files.append((docdir, docfiles)) 
    444448 
     
    450454data_files.append((os.path.join(docdir, "html"), docfiles)) 
    451455 
    452 docfiles = glob.glob(os.sep.join(["openoffice", "*.sxw"])) 
     456docfiles = glob.glob(os.sep.join(["openoffice", "*.sx?"])) 
    453457docfiles += glob.glob(os.sep.join(["openoffice", "*.png"])) 
    454458docfiles += glob.glob(os.sep.join(["openoffice", "README"]))