Thrift compiler improvements, two modes for PHP
Summary: Complete PHP generator and CPP generator to new formats, and offer PHP generator that generates inline code free of any TProtocol abstraction
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664771 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/compiler/py/setup.py b/compiler/py/setup.py
index 3901042..7167181 100644
--- a/compiler/py/setup.py
+++ b/compiler/py/setup.py
@@ -1,12 +1,12 @@
from distutils.core import setup
-setup(name='Thrift',
- version='1.0',
- description='Thrift IDL compiler',
- author =['Mark Slee', 'Marc Kwiatkowski'],
- author_email= ['mcslee@facebook.com', 'marc@facebook.com'],
- url='http://code.facebook.com/thrift',
- package_dir={'thrift' : 'src'},
+setup(name = 'Thrift',
+ version = '1.0',
+ description = 'Thrift IDL compiler',
+ author = ['Mark Slee', 'Marc Kwiatkowski'],
+ author_email = ['mcslee@facebook.com', 'marc@facebook.com'],
+ url = 'http://code.facebook.com/thrift',
+ package_dir = {'thrift' : 'src'},
py_modules = ['thrift.parser', 'thrift.cpp_generator', 'thrift.generator', 'thrift.php_generator'],
scripts = ['src/thrift']
)