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

Unified 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 side-by-side diff with in-line comments
Download patch
« doxypypy/README.rst ('K') | « doxypypy/doxypypy/test/test_doxypypy.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'
+ ]
+)
« 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