summaryrefslogtreecommitdiff
path: root/setup.py
blob: 4e70456a30abcbe8438207eea68c39d6523bbfc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages

setup(
        name = "Pycco",
        version = "0.3.0",
        description = """A Python port of Docco: the original quick-and-dirty,
        hundred-line-long, literate-programming-style documentation generator.
        """,
        author = "Nick Fitzgerald",
        author_email = "fitzgen@gmail.com",
        url = "http://fitzgen.github.com/pycco",
        packages = find_packages(),
        entry_points = {
            'console_scripts': [
                'pycco = pycco.main:main',
                ]
            },
        install_requires = ['markdown', 'pygments', 'pystache', 'smartypants'],
        extras_require = {'monitoring': 'watchdog'},
        )