mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-08 03:08:53 +00:00
c9676569ad
Summary: Yep, it's up and running. We now have full client/server support in all of C++ Java PHP and Python. Well, not quite... there's no PHP server, but honestly who wants one? Actually, if we do want one the framework will support writing is as a PHP file that can be served in apache like a web service (i.e. restserver.php would be thriftserver.php). But now that's rambling and nothing to do with this commit. Notes: cheever, let's chat about porting your multithreaded Pillar Python server over to Thrift git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664783 13f79535-47bb-0310-9956-ffa450edef68
13 lines
384 B
Python
13 lines
384 B
Python
from distutils.core import setup
|
|
|
|
setup(name = 'Thrift',
|
|
version = '1.0',
|
|
description = 'Thrift Python Libraries',
|
|
author = ['Mark Slee'],
|
|
author_email = ['mcslee@facebook.com'],
|
|
url = 'http://code.facebook.com/thrift',
|
|
packages = ['thrift', 'thrift.protocol', 'thrift.transport', 'thrift.server'],
|
|
package_dir = {'thrift' : 'src'},
|
|
)
|
|
|