Ver Fonte

Update docs for the release

oz123 há 10 anos atrás
pai
commit
61a30a97ce
2 ficheiros alterados com 14 adições e 7 exclusões
  1. 7 2
      docs/source/install.rst
  2. 7 5
      pwman/__init__.py

+ 7 - 2
docs/source/install.rst

@@ -1,9 +1,14 @@
 Installing and upgrading:
 ========================= 
 
-You can install pwman3 simply by unpacking the archive and running:
+You can get the latest stable version of pwman3 from pypi::
 
-   $ pip install .
+   $ pip install pwman3 
+
+Or you can install pwman3 cloning the repository and running::
+    
+   $ git clone https://github.com/pwman3/pwman3.git
+   $ cd pwman3 && pip install .
 
 Inside the extraced directory. At the moment pypi still does not have 
 the latest version of pwman3.

+ 7 - 5
pwman/__init__.py

@@ -38,12 +38,14 @@ except pkg_resources.DistributionNotFound:  # pragma: no cover
 website = "http://pwman3.github.io/pwman3/"
 author = "Oz Nahum Tiram"
 authoremail = "nahumoz@gmail.com"
-description = "a command line password management application."
+description = "a command line password manager with support for multiple databases."
 keywords = "password management sqlite crypto"
-long_description = (u"Pwman3 aims to provide a simple but powerful command "
-                    "line interface for password management.\nIt allows one "
-                    "to store your password in database locked by "
-                    "a\nmaster password which is AES encrypted.")
+long_description = u"""
+Pwman3 aims to provide a simple but powerful commandline interface for
+password management.
+It allows one to store passwords in database locked by master password which
+is AES encrypted.
+Pwman3 supports MySQL, Postgresql and SQLite"""
 
 
 def which(cmd):  # pragma: no cover