install_data.py 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. """distutils.command.install_data
  2. Implements the Distutils 'install_data' command, for installing
  3. platform-independent data files."""
  4. # contributed by Bastian Kleineidam
  5. __revision__ = "$Id$"
  6. import os
  7. from distutils.core import Command
  8. from distutils.util import change_root, convert_path
  9. class install_data(Command):
  10. description = "install data files"
  11. user_options = [
  12. ('install-dir=', 'd',
  13. "base directory for installing data files "
  14. "(default: installation base dir)"),
  15. ('root=', None,
  16. "install everything relative to this alternate root directory"),
  17. ('force', 'f', "force installation (overwrite existing files)"),
  18. ]
  19. boolean_options = ['force']
  20. def initialize_options(self):
  21. self.install_dir = None
  22. self.outfiles = []
  23. self.root = None
  24. self.force = 0
  25. self.data_files = self.distribution.data_files
  26. self.warn_dir = 1
  27. def finalize_options(self):
  28. self.set_undefined_options('install',
  29. ('install_data', 'install_dir'),
  30. ('root', 'root'),
  31. ('force', 'force'),
  32. )
  33. def run(self):
  34. self.mkpath(self.install_dir)
  35. for f in self.data_files:
  36. if isinstance(f, str):
  37. # it's a simple file, so copy it
  38. f = convert_path(f)
  39. if self.warn_dir:
  40. self.warn("setup script did not provide a directory for "
  41. "'%s' -- installing right in '%s'" %
  42. (f, self.install_dir))
  43. (out, _) = self.copy_file(f, self.install_dir)
  44. self.outfiles.append(out)
  45. else:
  46. # it's a tuple with path to install to and a list of files
  47. dir = convert_path(f[0])
  48. if not os.path.isabs(dir):
  49. dir = os.path.join(self.install_dir, dir)
  50. elif self.root:
  51. dir = change_root(self.root, dir)
  52. self.mkpath(dir)
  53. if f[1] == []:
  54. # If there are no files listed, the user must be
  55. # trying to create an empty directory, so add the
  56. # directory to the list of output files.
  57. self.outfiles.append(dir)
  58. else:
  59. # Copy files, adding them to the list of output files.
  60. for data in f[1]:
  61. data = convert_path(data)
  62. (out, _) = self.copy_file(data, dir)
  63. self.outfiles.append(out)
  64. def get_inputs(self):
  65. return self.data_files or []
  66. def get_outputs(self):
  67. return self.outfiles