~mtrausch/pymcrypt/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Michael B. Trausch
  • Date: 2010-12-16 08:48:49 UTC
  • Revision ID: mike@trausch.us-20101216084849-3ewab04l2qlz714l
The whole thing works, and there is a stream interface for reading and and writing encrypted streams.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
      version = '0.0.1',
13
13
      cmdclass = { 'build_ext': build_ext },
14
14
      ext_modules = emodules,
15
 
      py_modules = [ 'EncryptedWriter', '__init__' ],
 
15
      py_modules = [ 'EncryptedWriter', '__init__',
 
16
                     'EncryptedReader', 'common' ],
16
17
      data_files = [ ('cmcrypt', [ 'cmcrypt.pxd' ]) ])