blob: 8ff1645e0f09c2c45d29ccefbe0eefb13ef8283a [file] [log] [blame]
Mark Sleefb40c192007-03-01 00:35:54 +00001#!/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 Sleecde2b612006-09-03 21:13:07 +00009from distutils.core import setup
10
11setup(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 Sleec9676562006-09-05 17:34:52 +000017 packages = ['thrift', 'thrift.protocol', 'thrift.transport', 'thrift.server'],
Mark Sleecde2b612006-09-03 21:13:07 +000018 package_dir = {'thrift' : 'src'},
19 )
20