summaryrefslogtreecommitdiff
path: root/setup.py
blob: 290e2e02bc0cd6ffff9d49261c5851ba3e58755e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from distutils.core import setup

setup(
    name = 'Markdown',
    version = '2.0-beta',
    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",
    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'],
    )