blob: 7167181c06b9e58e301c90f98c2dd0394ee00c38 [file] [log] [blame]
Marc Slemko53027fc2006-08-17 01:12:11 +00001from distutils.core import setup
2
Mark Slee9cb7c612006-09-01 22:17:45 +00003setup(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