aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
blob: c7c0b5afe88dc42d9d73e7f88bafaa402111251d (plain)
1
2
3
4
5
6
7
8
9
10
11
from setuptools import setup

setup(name="Pycco",
      version="0.1",
      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/pocco",
      packages=["pycco_resources"],
      scripts=["pycco"])