| Index: doxypypy/setup.py
 | 
| diff --git a/doxypypy/setup.py b/doxypypy/setup.py
 | 
| new file mode 100755
 | 
| index 0000000000000000000000000000000000000000..c14895f35a5d99940dc1342bda6dc12c2481e01c
 | 
| --- /dev/null
 | 
| +++ b/doxypypy/setup.py
 | 
| @@ -0,0 +1,39 @@
 | 
| +#!/usr/bin/env python
 | 
| +# -*- coding: utf-8 -*-
 | 
| +from setuptools import setup, find_packages
 | 
| +from os.path import dirname, join
 | 
| +from os import chdir
 | 
| +
 | 
| +if dirname(__file__):
 | 
| +    chdir(dirname(__file__))
 | 
| +
 | 
| +setup(
 | 
| +    name='doxypypy',
 | 
| +    version='0.8.8.6',
 | 
| +    description='A Doxygen filter for Python',
 | 
| +    long_description=open(join(dirname(__file__), 'README.rst')).read(),
 | 
| +    keywords='Doxygen filter Python documentation',
 | 
| +    author='Eric W. Brown',
 | 
| +    url='https://github.com/Feneric/doxypypy',
 | 
| +    packages=find_packages(),
 | 
| +    test_suite='doxypypy.test.test_doxypypy',
 | 
| +    entry_points={
 | 
| +        'console_scripts': [
 | 
| +            'doxypypy = doxypypy.doxypypy:main'
 | 
| +        ]
 | 
| +    },
 | 
| +    classifiers=[
 | 
| +        'Development Status :: 4 - Beta',
 | 
| +        'Environment :: Console',
 | 
| +        'Environment :: Plugins',
 | 
| +        'Intended Audience :: Developers',
 | 
| +        'Intended Audience :: System Administrators',
 | 
| +        'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
 | 
| +        'Natural Language :: English',
 | 
| +        'Operating System :: MacOS :: MacOS X',
 | 
| +        'Operating System :: POSIX',
 | 
| +        'Operating System :: Unix',
 | 
| +        'Programming Language :: Python',
 | 
| +        'Topic :: Software Development :: Documentation'
 | 
| +    ]
 | 
| +)
 | 
| 
 |