]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
tools/cephfs: add setup.py for cephfs-shell
authorKefu Chai <kchai@redhat.com>
Thu, 9 Aug 2018 04:42:57 +0000 (12:42 +0800)
committerKefu Chai <kchai@redhat.com>
Thu, 9 Aug 2018 04:44:43 +0000 (12:44 +0800)
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>
src/tools/cephfs/setup.py [new file with mode: 0644]

diff --git a/src/tools/cephfs/setup.py b/src/tools/cephfs/setup.py
new file mode 100644 (file)
index 0000000..8cf7f28
--- /dev/null
@@ -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+',
+)