diff options
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -4,7 +4,7 @@ from distutils.core import setup setup( name = 'Markdown', - version = '2.0-beta', + version = '2.0-beta-2', description = "Python implementation of Markdown.", author = "Manfred Stienstra and Yuri takhteyev", author_email = "yuri [at] freewisdom.org", @@ -12,7 +12,6 @@ setup( maintainer_email = "waylan [at] gmail.com", url = "http://www.freewisdom.org/projects/python-markdown", license = "BSD License, GNU Public License (GPL)", - py_modules = ["markdown"], - packages = ['markdown_extensions'], - scripts = ['scripts/pymarkdown.py'], + packages = ['markdown', 'markdown.extensions'], + scripts = ['markdown.py'], ) |