1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
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'])
)
|