blob: d5bbae86e1a73027016109b8abad08e6b6b351ec [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'},
10 py_modules = ['thrift.parser', 'thrift.cpp_generator', 'thrift.generator'],
11 scripts = ['src/thrift']
12 )
13