Added documenntation to the docs folder and edited the mac bash script in response to tests
This commit is contained in:
17
numpy-1.6.2/numpy/numarray/setup.py
Normal file
17
numpy-1.6.2/numpy/numarray/setup.py
Normal file
@@ -0,0 +1,17 @@
|
||||
from os.path import join
|
||||
|
||||
def configuration(parent_package='',top_path=None):
|
||||
from numpy.distutils.misc_util import Configuration
|
||||
config = Configuration('numarray',parent_package,top_path)
|
||||
|
||||
config.add_data_files('include/numpy/*')
|
||||
|
||||
config.add_extension('_capi',
|
||||
sources=['_capi.c'],
|
||||
)
|
||||
|
||||
return config
|
||||
|
||||
if __name__ == '__main__':
|
||||
from numpy.distutils.core import setup
|
||||
setup(configuration=configuration)
|
||||
Reference in New Issue
Block a user