comparison setup.py @ 47:38da44b09e43 0.1

Add the docs to the setup.py package_data.
author Brian Neal <bgneal@gmail.com>
date Tue, 05 Jun 2012 19:22:14 -0500
parents ad9d606ef5fa
children
comparison
equal deleted inserted replaced
46:ad9d606ef5fa 47:38da44b09e43
16 url='https://bitbucket.org/bgneal/enigma/', 16 url='https://bitbucket.org/bgneal/enigma/',
17 license='MIT', 17 license='MIT',
18 description='A historically accurate Enigma machine simulation library.', 18 description='A historically accurate Enigma machine simulation library.',
19 long_description=open(join(dirname(__file__), 'README.txt')).read(), 19 long_description=open(join(dirname(__file__), 'README.txt')).read(),
20 packages=['enigma', 'enigma.rotors', 'enigma.tests'], 20 packages=['enigma', 'enigma.rotors', 'enigma.tests'],
21 package_data=dict(enigma=['examples/*.py']), 21 package_data=dict(enigma=['examples/*.py',
22 'docs/source/*.rst',
23 'docs/source/*.py',
24 ]),
22 scripts=['pyenigma.py'], 25 scripts=['pyenigma.py'],
23 classifiers = [ 26 classifiers = [
24 'Development Status :: 3 - Alpha', 27 'Development Status :: 3 - Alpha',
25 'Environment :: Console', 28 'Environment :: Console',
26 'Intended Audience :: End Users/Desktop', 29 'Intended Audience :: End Users/Desktop',