| OLD | NEW | 
| (Empty) |  | 
 |   1 #!/usr/bin/env python | 
 |   2 # -*- coding: utf-8 -*- | 
 |   3 from setuptools import setup, find_packages | 
 |   4 from os.path import dirname, join | 
 |   5 from os import chdir | 
 |   6  | 
 |   7 if dirname(__file__): | 
 |   8     chdir(dirname(__file__)) | 
 |   9  | 
 |  10 setup( | 
 |  11     name='doxypypy', | 
 |  12     version='0.8.8.6', | 
 |  13     description='A Doxygen filter for Python', | 
 |  14     long_description=open(join(dirname(__file__), 'README.rst')).read(), | 
 |  15     keywords='Doxygen filter Python documentation', | 
 |  16     author='Eric W. Brown', | 
 |  17     url='https://github.com/Feneric/doxypypy', | 
 |  18     packages=find_packages(), | 
 |  19     test_suite='doxypypy.test.test_doxypypy', | 
 |  20     entry_points={ | 
 |  21         'console_scripts': [ | 
 |  22             'doxypypy = doxypypy.doxypypy:main' | 
 |  23         ] | 
 |  24     }, | 
 |  25     classifiers=[ | 
 |  26         'Development Status :: 4 - Beta', | 
 |  27         'Environment :: Console', | 
 |  28         'Environment :: Plugins', | 
 |  29         'Intended Audience :: Developers', | 
 |  30         'Intended Audience :: System Administrators', | 
 |  31         'License :: OSI Approved :: GNU General Public License v2 (GPLv2)', | 
 |  32         'Natural Language :: English', | 
 |  33         'Operating System :: MacOS :: MacOS X', | 
 |  34         'Operating System :: POSIX', | 
 |  35         'Operating System :: Unix', | 
 |  36         'Programming Language :: Python', | 
 |  37         'Topic :: Software Development :: Documentation' | 
 |  38     ] | 
 |  39 ) | 
| OLD | NEW |