-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
49 lines (42 loc) · 1.28 KB
/
setup.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/python
from setuptools import setup
import distutils.command.install_scripts
import shutil
import os
if os.path.exists('README'):
with open('README') as readme_file:
long_description = readme_file.read().strip()
else:
long_description = ''
# idea from http://stackoverflow.com/a/11400431/2139420
class StripExtension(distutils.command.install_scripts.install_scripts):
"""
Class to handle the stripping of .py extensions in for executable file names
making them more user friendly
"""
def run(self):
distutils.command.install_scripts.install_scripts.run(self)
for script in self.get_outputs():
if script.endswith(".py"):
shutil.move(script, script[:-3])
setup(
name="ceph_iscsi_config",
version="2.7",
description="Common classes/functions used to configure iscsi gateways "
"backed by Ceph/RBD",
long_description=long_description,
author="Paul Cuzner",
author_email="pcuzner@redhat.com",
url="http://github.com/pcuzner/ceph-iscsi-config",
license="GPLv3",
packages=[
"ceph_iscsi_config"
],
scripts=[
"rbd-target-gw.py"
],
data_files=[("/var/log/rbd-target-gw", [])],
cmdclass={
"install_scripts": StripExtension
}
)