m2m模型翻译
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
335 B

6 months ago
  1. def configuration(parent_package='',top_path=None):
  2. from numpy.distutils.misc_util import Configuration
  3. config = Configuration('compat', parent_package, top_path)
  4. config.add_subpackage('tests')
  5. return config
  6. if __name__ == '__main__':
  7. from numpy.distutils.core import setup
  8. setup(configuration=configuration)