Generate package __config__.py file containing system_info information used during building the package. This file is installed to the package installation directory.
(self,name='__config__')
| 2106 | self.add_data_files(('', generate_hg_version_py())) |
| 2107 | |
| 2108 | def make_config_py(self,name='__config__'): |
| 2109 | """Generate package __config__.py file containing system_info |
| 2110 | information used during building the package. |
| 2111 | |
| 2112 | This file is installed to the |
| 2113 | package installation directory. |
| 2114 | |
| 2115 | """ |
| 2116 | self.py_modules.append((self.name, name, generate_config_py)) |
| 2117 | |
| 2118 | def get_info(self,*names): |
| 2119 | """Get resources information. |
no outgoing calls
no test coverage detected