From 993fbde068c7cad977aa2be857237f6ab7d018f1 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Tue, 29 Jun 2010 21:18:53 -0700 Subject: Fixing up pocco to work with files that dont have an extension and adding the setup.py script --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..f359b6d --- /dev/null +++ b/setup.py @@ -0,0 +1,10 @@ +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"]) -- cgit v1.2.3