diff options
author | Kefu Chai <kchai@redhat.com> | 2018-08-09 06:42:57 +0200 |
---|---|---|
committer | Kefu Chai <kchai@redhat.com> | 2018-08-09 06:44:43 +0200 |
commit | c29f3492ea0712e5bf3bf32d994d86da1d2c0961 (patch) | |
tree | 63fbd199c5dc358ba22db070fe9ab445a4771899 /src/tools/cephfs/setup.py | |
parent | Merge pull request #23472 from jcsp/wip-orchestrator-rook-doc (diff) | |
download | ceph-c29f3492ea0712e5bf3bf32d994d86da1d2c0961.tar.xz ceph-c29f3492ea0712e5bf3bf32d994d86da1d2c0961.zip |
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 <kchai@redhat.com>
Diffstat (limited to 'src/tools/cephfs/setup.py')
-rw-r--r-- | src/tools/cephfs/setup.py | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/tools/cephfs/setup.py b/src/tools/cephfs/setup.py new file mode 100644 index 00000000000..8cf7f28f7d5 --- /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+', +) |