Skip to content

Commit

Permalink
pep8 setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Dusty Phillips committed Dec 2, 2012
1 parent 6012a33 commit 8ef57e9
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions setup.py
Expand Up @@ -2,18 +2,18 @@
import opterator

setup(
name = "opterator",
version = opterator.__version__,
py_modules = ['opterator'],
author = "Dusty Phillips",
author_email = "dusty@linux.ca",
license = "MIT",
keywords = "opterator option parse parser options",
url = "http://github.com/buchuki/opterator/",
description = "Easy option parsing introspected from function signature.",
long_description = """At heart, a decorator for a script's main
name="opterator",
version=opterator.__version__,
py_modules=['opterator'],
author="Dusty Phillips",
author_email="dusty@linux.ca",
license="MIT",
keywords="opterator option parse parser options",
url="http://github.com/buchuki/opterator/",
description="Easy option parsing introspected from function signature.",
long_description="""At heart, a decorator for a script's main
entry point that uses a function function signature and docstring to
pseudo-automatically create an option parser. When invoked, the option parser
automatically maps command-line arguments to function parameters.""",
download_url = "http://cloud.github.com/downloads/buchuki/opterator/opterator-0.1.tar.gz"
download_url="http://cloud.github.com/downloads/buchuki/opterator/opterator-0.1.tar.gz"
)

0 comments on commit 8ef57e9

Please sign in to comment.