blob: 3901042bc348dfa8c73017da9cb917644a34e116 [file] [log] [blame]
Marc Slemko53027fc2006-08-17 01:12:11 +00001from distutils.core import setup
2
3setup(name='Thrift',
4 version='1.0',
5 description='Thrift IDL compiler',
6 author =['Mark Slee', 'Marc Kwiatkowski'],
7 author_email= ['mcslee@facebook.com', 'marc@facebook.com'],
8 url='http://code.facebook.com/thrift',
9 package_dir={'thrift' : 'src'},
Marc Slemkoc6936402006-08-23 02:15:31 +000010 py_modules = ['thrift.parser', 'thrift.cpp_generator', 'thrift.generator', 'thrift.php_generator'],
Marc Slemko53027fc2006-08-17 01:12:11 +000011 scripts = ['src/thrift']
12 )
13