Changeset 1057
- Timestamp:
- 07/03/03 11:44:01 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 1 added
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/MANIFEST.in
r1015 r1057 1 include COPYING TODO NEWS CREDITS SECURITY MANIFEST.in clean.sh bin/pykota bin/edpykota bin/warnpykota bin/repykota bin/ README1 include COPYING TODO NEWS CREDITS SECURITY MANIFEST.in clean.sh bin/pykota bin/edpykota bin/warnpykota bin/repykota bin/pykotme bin/README 2 2 recursive-include po README *.po *.mo *.pot 3 3 recursive-include man README *.1 -
pykota/trunk/NEWS
r1056 r1057 22 22 PyKota NEWS : 23 23 24 - 1.11 : 25 26 - Now includes the pykotme command line tool, to produce 27 printing quotes for users. 28 24 29 - 1.10 : 25 30 -
pykota/trunk/pykota/version.py
r1056 r1057 21 21 # 22 22 23 __version__ = "1.1 0_unofficial"23 __version__ = "1.11_unofficial" 24 24 25 25 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng.""" -
pykota/trunk/setup.py
r1048 r1057 23 23 # 24 24 # $Log$ 25 # Revision 1.18 2003/07/03 09:44:00 jalet 26 # Now includes the pykotme utility 27 # 25 28 # Revision 1.17 2003/06/30 12:46:15 jalet 26 29 # Extracted reporting code. … … 232 235 url = "http://www.librelogiciel.com/software/", 233 236 packages = [ "pykota", "pykota.storages", "pykota.requesters", "pykota.loggers", "pykota.accounters", "pykota.reporters" ], 234 scripts = [ "bin/pykota", "bin/edpykota", "bin/repykota", "bin/warnpykota" ],237 scripts = [ "bin/pykota", "bin/edpykota", "bin/repykota", "bin/warnpykota", "bin/pykotme" ], 235 238 data_files = data_files) 236 239