summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2008-02-18 01:01:54 +0000
committerWaylan Limberg <waylan@gmail.com>2008-02-18 01:01:54 +0000
commit4f63b9542f360d25cbcc7195c35f47c1baaf4b07 (patch)
treea892fd54652cde0b3e6336247ed7ea193e165ce1
parent6d5b96eac3a9bbba4898352ccce82b784540ed01 (diff)
downloadpython-markdown-4f63b9542f360d25cbcc7195c35f47c1baaf4b07.tar.gz
Final commit before 1.7 final is released. Updated CHAGE_LOG, setp.py 1.7_Final
and added a MANIFEST file.
-rw-r--r--CHANGE_LOG.txt7
-rw-r--r--MANIFEST7
-rw-r--r--setup.py7
3 files changed, 18 insertions, 3 deletions
diff --git a/CHANGE_LOG.txt b/CHANGE_LOG.txt
index 07e6027..e076fb2 100644
--- a/CHANGE_LOG.txt
+++ b/CHANGE_LOG.txt
@@ -1,6 +1,13 @@
PYTHON MARKDOWN CHANGELOG
=========================
+Feb 13, 2008: A little code cleanup and better documentation
+and inheritance for pre/post proccessors.
+
+Feb 9, 2008: Doublequotes no longer html escaped and rawhtml
+honors <?foo>, <@foo>, and <%foo> for those who run markdown on
+template syntax.
+
Dec 12, 2007: Updated docs. Removed encoding arg from Markdown
and markdown as per list discussion. Clean up in prep for 1.7.
diff --git a/MANIFEST b/MANIFEST
new file mode 100644
index 0000000..cdefe18
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,7 @@
+README.txt
+README.html
+CHANGE_LOG.txt
+markdown.py
+mdx_footnotes.py
+mdx_rss.py
+setup.py
diff --git a/setup.py b/setup.py
index dad6811..0f77c5b 100644
--- a/setup.py
+++ b/setup.py
@@ -5,9 +5,10 @@ setup(
version = '1.7',
description = "Python implementation of Markdown.",
author = "Manfred Stienstra and Yuri takhteyev",
- maintainer = "Yuri Takhteyev",
- maintainer_email = "yuri [at] freewisdom.org",
+ author_email = "yuri [at] freewisdom.org",
+ maintainer = "Waylan Limberg",
+ maintainer_email = "waylan [at] gmail.com",
url = "http://www.freewisdom.org/projects/python-markdown",
+ license = "BSD License, GNU Public License (GPL)",
py_modules = ["markdown","mdx_footnotes", "mdx_rss"],
-
)