diff options
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', |