X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Ftest%2Fpython%2Fbrag-client%2Fsetup.py;fp=src%2Fceph%2Fsrc%2Ftest%2Fpython%2Fbrag-client%2Fsetup.py;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=7f2bc7a208c90bd568506a3eeff0d8ac5176eb37;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/test/python/brag-client/setup.py b/src/ceph/src/test/python/brag-client/setup.py deleted file mode 100644 index 7f2bc7a..0000000 --- a/src/ceph/src/test/python/brag-client/setup.py +++ /dev/null @@ -1,31 +0,0 @@ -import os -from setuptools import setup, find_packages - -# link ceph-brag client script here so we can "install" it -current_dir = os.path.abspath(os.path.dirname(__file__)) -src_dir = os.path.dirname(os.path.dirname(os.path.dirname(current_dir))) -script_path = os.path.join(src_dir, 'brag/client/ceph-brag') - - -def link_target(source, destination): - if not os.path.exists(destination): - try: - os.symlink(source, destination) - except (IOError, OSError) as error: - print('Ignoring linking of target: %s' % str(error)) - -link_target(script_path, 'ceph_brag.py') - -setup( - name='ceph_brag', - version='0.1', - description='', - author='', - author_email='', - install_requires=[ - "requests", - ], - zip_safe=False, - packages=find_packages(), - #packages=find_packages(exclude=['ez_setup']) -)