Marc Slemko | 53027fc | 2006-08-17 01:12:11 +0000 | [diff] [blame] | 1 | from distutils.core import setup |
2 | |||||
3 | setup(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 |