Mark Slee | fb40c19 | 2007-03-01 00:35:54 +0000 | [diff] [blame^] | 1 | #!/usr/bin/env python |
| 2 | # |
| 3 | # Copyright (c) 2006- Facebook |
| 4 | # Distributed under the Thrift Software License |
| 5 | # |
| 6 | # See accompanying file LICENSE or visit the Thrift site at: |
| 7 | # http://developers.facebook.com/thrift/ |
| 8 | |
Mark Slee | cde2b61 | 2006-09-03 21:13:07 +0000 | [diff] [blame] | 9 | from distutils.core import setup |
| 10 | |
| 11 | setup(name = 'Thrift', |
| 12 | version = '1.0', |
| 13 | description = 'Thrift Python Libraries', |
| 14 | author = ['Mark Slee'], |
| 15 | author_email = ['mcslee@facebook.com'], |
| 16 | url = 'http://code.facebook.com/thrift', |
Mark Slee | c967656 | 2006-09-05 17:34:52 +0000 | [diff] [blame] | 17 | packages = ['thrift', 'thrift.protocol', 'thrift.transport', 'thrift.server'], |
Mark Slee | cde2b61 | 2006-09-03 21:13:07 +0000 | [diff] [blame] | 18 | package_dir = {'thrift' : 'src'}, |
| 19 | ) |
| 20 | |