blob: 3e6a634ebe19fc6df4ca5f8b167a26e0d10a2da1 (
plain) (
tree)
|
|
--- setup.py.orig 2017-10-14 15:52:28 UTC
+++ setup.py
@@ -14,34 +14,11 @@ if sys.version_info < (2, 6):
print("THIS MODULE REQUIRES PYTHON 2.6, 2.7, OR 3.3+. YOU ARE CURRENTLY USING PYTHON {0}".format(sys.version))
sys.exit(1)
-
-FILES_TO_MARK_EXECUTABLE = ["flac-linux-x86", "flac-linux-x86_64", "flac-mac", "flac-win32.exe"]
-
-
-class InstallWithExtraSteps(install):
- def run(self):
- install.run(self) # do the original install steps
-
- # mark the FLAC executables as executable by all users (this fixes occasional issues when file permissions get messed up)
- for output_path in self.get_outputs():
- if os.path.basename(output_path) in FILES_TO_MARK_EXECUTABLE:
- log.info("setting executable permissions on {}".format(output_path))
- stat_info = os.stat(output_path)
- os.chmod(
- output_path,
- stat_info.st_mode |
- stat.S_IRUSR | stat.S_IXUSR | # owner can read/execute
- stat.S_IRGRP | stat.S_IXGRP | # group can read/execute
- stat.S_IROTH | stat.S_IXOTH # everyone else can read/execute
- )
-
-
setup(
name="SpeechRecognition",
version=speech_recognition.__version__,
packages=["speech_recognition"],
include_package_data=True,
- cmdclass={"install": InstallWithExtraSteps},
# PyPI metadata
author=speech_recognition.__author__,
|