Metadata-Version: 1.1
Name: vtwt
Version: 0.1.0
Summary: Ver's Twitter CLI
Home-page: http://github.com/olix0r/vtwt
Author: Oliver Gould
Author-email: ver@olix0r.net
License: MIT
Download-URL: http://pypi.python.org/pypi/vtwt
Description: Vtwt -- Ver's Twitter Client
        
        
        About
        -----
        
        Vtwt is released under a BSD license (see LICENSE).
        
        
        Installation
        ------------
        
        vtwt installs using a standard Python distutils setup.py:
        
        $ python setup.py install
        
        
        Configuration File
        ------------------
        
        vtwt(1) reads a configuration file (~//vtwtrc, by default; specified with the
        --config-file option) that is used to set configuration values that are
        otherwise passed to the command-line.  This file may contain arbitrary Python:
        
        import hashlib
        user = "0b0t"
        password = hashlib.new("sha256", "i like to eet peeza"
        ).digest().encode("base64").strip()
        
        ...or whatever you fancy.  You probably shouldn't do anything with Twisted here
        (and if you dare to try it, at least be kind enough to stop the reactor!).
        
        
        Dependencies
        ------------
        
        twisted -- Internets
        http://twistedmatrix.com
        
        twitty-twister -- Twisted Twitter Client library
        http://github.com/olix0r/twitty-twister
        
        jersey -- CLI-extensions for Twisted.
        Not yet Open Source... (working on it).
        
        
        
Platform: UNKNOWN
Classifier: Framework :: Twisted
Classifier: License :: OSI Approved :: MIT License
Requires: twittytwister
Requires: twisted
Requires: oauth
Requires: pendrell(>=0.2.2)
Requires: jersey(>=0.1.2)
Provides: vtwt
