Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: doxypypy/setup.py

Issue 1574883002: add doxypypy and py_filter so this will turn google style (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« doxypypy/README.rst ('K') | « doxypypy/doxypypy/test/test_doxypypy.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 )
OLDNEW
« doxypypy/README.rst ('K') | « doxypypy/doxypypy/test/test_doxypypy.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698