summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/install_data.py
blob: f86d95e54b6bd5af73b93638cddc6f50013f3e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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._copydata(self.distribution.data)

    def get_outputs (self):
        return self._outputdata(self.distribution.data)