diff options
author | Waylan Limberg <waylan@gmail.com> | 2009-06-05 22:04:18 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2009-06-05 22:25:54 -0400 |
commit | 678c4509c81c7ff9b68cff5eabcc684ea68c8253 (patch) | |
tree | d7b0a3bf0b3aae0edc8f5917c976b0ba163c6fb6 /setup.py | |
parent | fbf7b1f7c67122c7370284e14cd7e8d6c39d6940 (diff) | |
download | markdown-678c4509c81c7ff9b68cff5eabcc684ea68c8253.tar.gz markdown-678c4509c81c7ff9b68cff5eabcc684ea68c8253.tar.bz2 markdown-678c4509c81c7ff9b68cff5eabcc684ea68c8253.zip |
Updated setup.py to properly include test data.
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -27,15 +27,17 @@ setup( name = 'Markdown', version = version, url = 'http://www.freewisdom.org/projects/python-markdown', - download_url = 'http://pypi.python.org/packages/source/M/Markdown/Markdown-2.0.tar.gz', + download_url = 'http://pypi.python.org/packages/source/M/Markdown/Markdown-%s.tar.gz'%version, description = "Python implementation of Markdown.", author = "Manfred Stienstra and Yuri takhteyev", author_email = "yuri [at] freewisdom.org", maintainer = "Waylan Limberg", maintainer_email = "waylan [at] gmail.com", license = "BSD License", - packages = ['markdown', 'markdown.extensions'], + packages = ['markdown', 'markdown.extensions', 'markdown.tests'], scripts = ['bin/markdown'], + package_data = {'': ['tests/*/*.txt', 'tests/*/*.html', 'tests/*/*.cfg', + 'tests/*/*/*.txt', 'tests/*/*/*.html', 'tests/*/*/*.cfg']}, cmdclass = {'install_scripts': md_install_scripts}, classifiers = ['Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: BSD License', |