浏览代码

Update docs for the release

oz123 10 年之前
父节点
当前提交
61a30a97ce
共有 2 个文件被更改,包括 14 次插入7 次删除
  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