Skip to content

Commit

Permalink
Updated setup.py to properly include test data.
Browse files Browse the repository at this point in the history
  • Loading branch information
Waylan Limberg committed Jun 6, 2009
1 parent fbf7b1f commit 678c450
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[nosetests]
with-doctest=1
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,17 @@ def run(self):
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',
Expand Down

0 comments on commit 678c450

Please sign in to comment.