mirror of
https://github.com/python/cpython.git
synced 2025-10-22 17:33:55 +00:00
11 lines
266 B
Python
11 lines
266 B
Python
from distutils.cmd import install_misc
|
|
|
|
class install_data (install_misc):
|
|
|
|
description = "install data files"
|
|
|
|
def finalize_options (self):
|
|
self._install_dir_from('install_data')
|
|
|
|
def run (self):
|
|
self._copy_files(self.distribution.data)
|