URI: 
       tdefine aes and ecdsa as dependencies - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 1532a3b0d5d30c102c666bc216741d8fdd9908ec
   DIR parent 2a8e2c3b2043a234242c04e9452694f0826194c5
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Thu, 10 May 2012 17:37:49 +0400
       
       define aes and ecdsa as dependencies
       
       Diffstat:
         M README                              |      11 -----------
         M setup.py                            |       1 +
       
       2 files changed, 1 insertion(+), 11 deletions(-)
       ---
   DIR diff --git a/README b/README
       t@@ -19,17 +19,6 @@ Features:
        
        INSTALL
        
       -If you use the source from git, you will need to install python-ecdsa and slowaes:
       -* sudo easy_install ecdsa
       -* sudo easy_install slowaes
       -These packages are included in the tar.gz and zip archives.
       -
       -
       -In order to use the gtk gui, you need pygtk and tk.
       -* apt-get install python-gtk2
       -* apt-get install python-tk
       -
       -
        To install Electrum, type:
        
          sudo python setup.py install
   DIR diff --git a/setup.py b/setup.py
       t@@ -7,6 +7,7 @@ from lib.version import ELECTRUM_VERSION as version
        
        setup(name = "Electrum",
            version = version,
       +    install_requires = ['slowaes','ecdsa'],
            package_dir = {'electrum': 'lib'},
            scripts= ['electrum', 'watch_address', 'blocks'],
            py_modules = ['electrum.version','electrum.wallet','electrum.interface','electrum.gui','electrum.gui_qt','electrum.icons_rc','electrum.mnemonic','electrum.pyqrnative','electrum.bmp'],