blob: 1d5d0234328148da8be629603cf80aab54b3f5cc [file] [log] [blame]
Mark Sleecde2b612006-09-03 21:13:07 +00001from distutils.core import setup
2
3setup(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 Sleefc89d392006-09-04 00:04:39 +00009 packages = ['thrift', 'thrift.protocol', 'thrift.transport'],
Mark Sleecde2b612006-09-03 21:13:07 +000010 package_dir = {'thrift' : 'src'},
11 )
12