Procházet zdrojové kódy

Update docs for the release

oz123 před 10 roky
rodič
revize
61a30a97ce
2 změnil soubory, kde provedl 14 přidání a 7 odebrání
  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:
 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 
 Inside the extraced directory. At the moment pypi still does not have 
 the latest version of pwman3.
 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/"
 website = "http://pwman3.github.io/pwman3/"
 author = "Oz Nahum Tiram"
 author = "Oz Nahum Tiram"
 authoremail = "nahumoz@gmail.com"
 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"
 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
 def which(cmd):  # pragma: no cover