Skip to content

Commit

Permalink
add setup.py by bugsuse
Browse files Browse the repository at this point in the history
  • Loading branch information
zy committed Oct 11, 2019
1 parent e910e07 commit 95d4052
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions NuistRadar/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
"""
added by bugsuse(https://github.com/bugsuse)
"""
def configuration(parent_package='', top_path=None):
from numpy.distutils.misc_util import Configuration

config = Configuration('NuistRadar', parent_package, top_path)
config.add_subpackage('configure')
config.add_subpackage('io') # io first to detect if RSL is missing.
config.add_subpackage('core')
config.add_subpackage('draw')
config.add_subpackage('interp')
config.add_data_dir('data')
return config

if __name__ == '__main__':
from numpy.distutils.core import setup
setup(**configuration(top_path='').todict())

0 comments on commit 95d4052

Please sign in to comment.