This commit is contained in:
Kovid Goyal 2008-02-28 23:19:22 +00:00
parent 158137ff5c
commit d53460c1c4
2 changed files with 7 additions and 11 deletions

View File

@ -79,22 +79,18 @@ if __name__ == '__main__':
""", """,
long_description = long_description =
""" """
libprs500 is a ebook management application. It maintains an ebook library libprs500 is an e-book library manager. It can view, convert and catalog e-books
and allows for easy transfer of books from the library to an ebook reader. in most of the major e-book formats. It can also talk to a few e-book reader devices. It can
At the moment, it supports the `SONY Portable Reader`_. go out to the internet and fetch metadata for your books. It can download newspapers and convert
them into e-books for convenient reading. It is cross platform, running on Linux, Windows and OS X.
It can also convert various popular ebook formats into LRF, the native
ebook format of the SONY Reader.
For screenshots: https://libprs500.kovidgoyal.net/wiki/Screenshots For screenshots: https://libprs500.kovidgoyal.net/wiki/Screenshots
For installation/usage instructions please see For installation/usage instructions please see
https://libprs500.kovidgoyal.net/wiki/WikiStart#Installation http://libprs500.kovidgoyal.net
For SVN access: svn co https://svn.kovidgoyal.net/code/libprs500 For SVN access: svn co https://svn.kovidgoyal.net/code/libprs500
.. _SONY Portable Reader: http://Sony.com/reader
.. _USB: http://www.usb.org
""", """,
license = 'GPL', license = 'GPL',
classifiers = [ classifiers = [

View File

@ -113,7 +113,7 @@ def upload_user_manual():
cwd = os.getcwdu() cwd = os.getcwdu()
os.chdir('src/libprs500/manual') os.chdir('src/libprs500/manual')
try: try:
check_call('python make.py') check_call('python make.py --validate')
check_call('ssh castalia rm -rf %s/\\*'%USER_MANUAL) check_call('ssh castalia rm -rf %s/\\*'%USER_MANUAL)
check_call('scp -r *.html styles images castalia:%s/'%USER_MANUAL) check_call('scp -r *.html styles images castalia:%s/'%USER_MANUAL)
finally: finally: