~mtrausch/pymcrypt/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Michael B. Trausch
  • Date: 2010-12-16 15:19:56 UTC
  • Revision ID: mike@trausch.us-20101216151956-poc3k8jkbe7ak15i
Ref Cython files as data. Do not require end-users to have Cython.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
      packages = [ 'pymcrypt' ],
14
14
      py_modules = [ 'pymcrypt.EncryptedWriter', 'pymcrypt.__init__',
15
15
                     'pymcrypt.EncryptedReader', 'pymcrypt.common' ],
16
 
      data_files = [ ('cmcrypt', [ 'cmcrypt.pxd' ]) ],
 
16
      data_files = [ ('cmcrypt', [ 'cmcrypt.pxd', 'libmcrypt.pyx' ]) ],
17
17
      description = 'mcrypt extension for Python 2 and 3',
18
18
      long_description = '\n'.join(wrap('''This package provides for a (hopefully)
19
19
clean, simple wrapper around mcrypt that can be used from both Python