8 lines
176 B
Python
Executable file
8 lines
176 B
Python
Executable file
"""
|
|
Poor man's setuptools script...
|
|
"""
|
|
|
|
from setuptools import setup
|
|
execfile('setup.py',
|
|
{'additional_params' :
|
|
{'namespace_packages' : ['mpl_toolkits']}})
|