Changeset 1658
- Timestamp:
- 07/28/04 15:00:02 (20 years ago)
- Location:
- pykota/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/MANIFEST.in
r1600 r1658 2 2 recursive-include po README *.po *.mo *.pot 3 3 recursive-include man README *.sh *.1 4 recursive-include docs README *.sgml *.png *.pdf *.html *.sx w4 recursive-include docs README *.sgml *.png *.pdf *.html *.sx? 5 5 recursive-include cgi-bin README *.cgi 6 6 recursive-include conf README *.sample … … 11 11 recursive-include contributed README *.pl *.sh *.py 12 12 recursive-include stylesheets README *.css 13 recursive-include openoffice README *.png *.sx w *.sxc*.pdf13 recursive-include openoffice README *.png *.sx? *.pdf 14 14 recursive-include tests README *.ps.gz *.sh -
pykota/trunk/setup.py
r1647 r1658 24 24 # 25 25 # $Log$ 26 # Revision 1.49 2004/07/28 13:00:02 jalet 27 # Now takes care of .sxi and .sxc files if any 28 # 26 29 # Revision 1.48 2004/07/27 07:14:24 jalet 27 30 # Now warns the user if pyosd is not present … … 441 444 442 445 docfiles = glob.glob(os.sep.join(["docs", "*.pdf"])) 446 docfiles += glob.glob(os.sep.join(["docs", "*.sx?"])) 443 447 data_files.append((docdir, docfiles)) 444 448 … … 450 454 data_files.append((os.path.join(docdir, "html"), docfiles)) 451 455 452 docfiles = glob.glob(os.sep.join(["openoffice", "*.sx w"]))456 docfiles = glob.glob(os.sep.join(["openoffice", "*.sx?"])) 453 457 docfiles += glob.glob(os.sep.join(["openoffice", "*.png"])) 454 458 docfiles += glob.glob(os.sep.join(["openoffice", "README"]))