From 85ee12f7c061d7035a6441f5d11d9ebed5e574cf Mon Sep 17 00:00:00 2001 From: Vijay Bellur Date: Fri, 20 Jun 2014 07:48:19 -0700 Subject: Revert "gfapi : remove gfapi.py to avoid confusion" This reverts commit d0547a28f59d80ed572652af3e327b761c4e540f Change-Id: I79ff562fff33d4ad7ca34c6442eb0e980890965a Reviewed-on: http://review.gluster.org/8139 Reviewed-by: Vijay Bellur Tested-by: Vijay Bellur --- api/examples/setup.py.in | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 api/examples/setup.py.in (limited to 'api/examples/setup.py.in') diff --git a/api/examples/setup.py.in b/api/examples/setup.py.in new file mode 100644 index 00000000000..908ccda8409 --- /dev/null +++ b/api/examples/setup.py.in @@ -0,0 +1,24 @@ +from distutils.core import setup + +DESC = """GlusterFS is a clustered file-system capable of scaling to +several petabytes. It aggregates various storage bricks over Infiniband +RDMA or TCP/IP interconnect into one large parallel network file system. +GlusterFS is one of the most sophisticated file systems in terms of +features and extensibility. It borrows a powerful concept called +Translators from GNU Hurd kernel. Much of the code in GlusterFS is in +user space and easily manageable. + +This package contains the Python interface to the libgfapi library.""" + +setup( + name='glusterfs-api', + version='@PACKAGE_VERSION@', + description='Python client library for the GlusterFS libgfapi', + long_description=DESC, + author='Gluster Community', + author_email='gluster-devel@gluster.org', + license='LGPLv3', + url='http://gluster.org/', + package_dir={'gluster':''}, + packages=['gluster'] +) -- cgit