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.

12 lines
418 B

6 months ago
  1. #!/usr/bin/env python3
  2. def configuration(parent_package='',top_path=None):
  3. from numpy.distutils.misc_util import Configuration
  4. config = Configuration('ma', parent_package, top_path)
  5. config.add_subpackage('tests')
  6. config.add_data_files('*.pyi')
  7. return config
  8. if __name__ == "__main__":
  9. from numpy.distutils.core import setup
  10. config = configuration(top_path='').todict()
  11. setup(**config)