diff options
author | Waylan Limberg <waylan@gmail.com> | 2008-08-11 20:12:28 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2008-08-11 20:12:28 -0400 |
commit | f9bc5d2b86a94fb98e791966bb26e1abd5ef0ed2 (patch) | |
tree | 217d79e69b8972c0c4fb830a36b6b7524e615000 /setup.py | |
parent | 2783134621439aaa1130a1b73da36b335c6b0361 (diff) | |
download | markdown-f9bc5d2b86a94fb98e791966bb26e1abd5ef0ed2.tar.gz markdown-f9bc5d2b86a94fb98e791966bb26e1abd5ef0ed2.tar.bz2 markdown-f9bc5d2b86a94fb98e791966bb26e1abd5ef0ed2.zip |
renamed extension module and set import to extension module first, then mdx_filename
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,6 +11,6 @@ setup( url = "http://www.freewisdom.org/projects/python-markdown", license = "BSD License, GNU Public License (GPL)", py_modules = ["markdown"], - packages = ['mdx'], + packages = ['markdown_extensions'], scripts = ['scripts/pymarkdown.py'], ) |