summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/tests/PKG-INFO
blob: f48546e5a88d9c75b93bc55706c6605ecf052875 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Metadata-Version: 1.2
Name: CLVault
Version: 0.5
Summary: Command-Line utility to store and retrieve passwords
Home-page: http://bitbucket.org/tarek/clvault
Author: Tarek Ziade
Author-email: tarek@ziade.org
License: PSF
Keywords: keyring,password,crypt
Requires-Dist: foo; sys.platform == 'okook'
Requires-Dist: bar; sys.platform == '%s'
Platform: UNKNOWN
Description: CLVault
       |=======
       |
       |CLVault uses Keyring to provide a command-line utility to safely store
       |and retrieve passwords.
       |
       |Install it using pip or the setup.py script::
       |
       |    $ python setup.py install
       |
       |    $ pip install clvault
       |
       |Once it's installed, you will have three scripts installed in your
       |Python scripts folder, you can use to list, store and retrieve passwords::
       |
       |    $ clvault-set blog
       |    Set your password:
       |    Set the associated username (can be blank): tarek
       |    Set a description (can be blank): My blog password
       |    Password set.
       |
       |    $ clvault-get blog
       |    The username is "tarek"
       |    The password has been copied in your clipboard
       |
       |    $ clvault-list
       |    Registered services:
       |    blog    My blog password
       |
       |
       |*clvault-set* takes a service name then prompt you for a password, and some
       |optional information about your service. The password is safely stored in
       |a keyring while the description is saved in a ``.clvault`` file in your
       |home directory. This file is created automatically the first time the command
       |is used.
       |
       |*clvault-get* copies the password for a given service in your clipboard, and
       |displays the associated user if any.
       |
       |*clvault-list* lists all registered services, with their description when
       |given.
       |
       |
       |Project page: http://bitbucket.org/tarek/clvault
       |