aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setup.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..de4b195
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,13 @@
+from distutils.core import setup
+
+setup(
+ name = 'markdown',
+ version = '1.3',
+ description = "Python implementation of Markdown.",
+ author = "Manfred Stienstra and Yuri takhteyev",
+ maintainer = "Yuri Takhteyev",
+ maintainer_email = "yuri [at] freewisdom.org",
+ url = "http://www.freewisdom.org/projects/python-markdown",
+ py_modules = ["markdown","mdx_footnotes", "mdx_rss"],
+
+ )