Skip to content

Commit

Permalink
Bump version number -> 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Zach Smith committed Nov 20, 2015
1 parent a3aadea commit 239816d
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,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,
name="Pycco",
version="0.3.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/pycco",
packages = find_packages(),
entry_points = {
'console_scripts': [
'pycco = pycco.main:main',
]
},
install_requires = ['markdown', 'pygments', 'pystache', 'smartypants'],
extras_require = {'monitoring': 'watchdog'},
)
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'},
)

0 comments on commit 239816d

Please sign in to comment.