mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
53027fc3d3
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664760 13f79535-47bb-0310-9956-ffa450edef68
14 lines
437 B
Python
14 lines
437 B
Python
from distutils.core import setup
|
|
|
|
setup(name='Thrift',
|
|
version='1.0',
|
|
description='Thrift IDL compiler',
|
|
author =['Mark Slee', 'Marc Kwiatkowski'],
|
|
author_email= ['mcslee@facebook.com', 'marc@facebook.com'],
|
|
url='http://code.facebook.com/thrift',
|
|
package_dir={'thrift' : 'src'},
|
|
py_modules = ['thrift.parser', 'thrift.cpp_generator', 'thrift.generator'],
|
|
scripts = ['src/thrift']
|
|
)
|
|
|