|
1 | 1 | from setuptools import setup, find_packages |
2 | 2 |
|
3 | 3 | setup( |
4 | | - name = "Pycco", |
5 | | - version = "0.3.0", |
6 | | - description = """A Python port of Docco: the original quick-and-dirty, |
| 4 | + name="Pycco", |
| 5 | + version="0.3.1", |
| 6 | + description="""A Python port of Docco: the original quick-and-dirty, |
7 | 7 | hundred-line-long, literate-programming-style documentation generator. |
8 | 8 | """, |
9 | | - author = "Nick Fitzgerald", |
10 | | - author_email = "fitzgen@gmail.com", |
11 | | - url = "http://fitzgen.github.com/pycco", |
12 | | - packages = find_packages(), |
13 | | - entry_points = { |
14 | | - 'console_scripts': [ |
15 | | - 'pycco = pycco.main:main', |
16 | | - ] |
17 | | - }, |
18 | | - install_requires = ['markdown', 'pygments', 'pystache', 'smartypants'], |
19 | | - extras_require = {'monitoring': 'watchdog'}, |
20 | | - ) |
| 9 | + author="Nick Fitzgerald", |
| 10 | + author_email="fitzgen@gmail.com", |
| 11 | + url="http://fitzgen.github.com/pycco", |
| 12 | + packages=find_packages(), |
| 13 | + entry_points={ |
| 14 | + 'console_scripts': [ |
| 15 | + 'pycco = pycco.main:main', |
| 16 | + ] |
| 17 | + }, |
| 18 | + install_requires=['markdown', 'pygments', 'pystache', 'smartypants'], |
| 19 | + extras_require={'monitoring': 'watchdog'}, |
| 20 | +) |
0 commit comments