Mark Slee | cde2b61 | 2006-09-03 21:13:07 +0000 | [diff] [blame] | 1 | from distutils.core import setup |
2 | |||||
3 | setup(name = 'Thrift', | ||||
4 | version = '1.0', | ||||
5 | description = 'Thrift Python Libraries', | ||||
6 | author = ['Mark Slee'], | ||||
7 | author_email = ['mcslee@facebook.com'], | ||||
8 | url = 'http://code.facebook.com/thrift', | ||||
Mark Slee | fc89d39 | 2006-09-04 00:04:39 +0000 | [diff] [blame] | 9 | packages = ['thrift', 'thrift.protocol', 'thrift.transport'], |
Mark Slee | cde2b61 | 2006-09-03 21:13:07 +0000 | [diff] [blame] | 10 | package_dir = {'thrift' : 'src'}, |
11 | ) | ||||
12 |