From: Kefu Chai Date: Thu, 9 Aug 2018 04:42:57 +0000 (+0800) Subject: tools/cephfs: add setup.py for cephfs-shell X-Git-Tag: v14.0.1~616^2~4 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c29f3492ea0712e5bf3bf32d994d86da1d2c0961;p=ceph.git tools/cephfs: add setup.py for cephfs-shell easier to manage its dependency this way, also pave its road to pypi. please note, cephfs is not hosted by pypi yet. Signed-off-by: Kefu Chai --- diff --git a/src/tools/cephfs/setup.py b/src/tools/cephfs/setup.py new file mode 100644 index 000000000000..8cf7f28f7d54 --- /dev/null +++ b/src/tools/cephfs/setup.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- + +from setuptools import setup + +__version__ = '0.0.1' + +setup( + name='cephfs-shell', + version=__version__, + description='Interactive shell for Ceph file system', + keywords='cephfs, shell', + scripts=['cephfs-shell'], + install_requires=[ + 'cephfs', + 'cmd2', + 'colorama', + ], + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Environment :: Console', + 'Intended Audience :: System Administrators', + 'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python :: 3' + ], + license='LGPLv2+', +)