mirror of
https://github.com/kennethreitz-archive/pocco.git
synced 2026-06-05 15:40:17 +00:00
11 lines
369 B
Python
11 lines
369 B
Python
from setuptools import setup
|
|
|
|
setup(name="Pocco",
|
|
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",
|
|
scripts=["pocco"])
|