glmnet-python icon indicating copy to clipboard operation
glmnet-python copied to clipboard

bug in setup.py

Open roseperrone opened this issue 11 years ago • 0 comments

The Configuration(package_name).to_dict() result already includes the packages=[package_name] entry.

By including it in setup() and in the config_dict mapping, setup() is supplied that keyword twice. You could remove it from the setup() call (line 31):

setup(version='1.1-5', description='Python wrappers for the GLMNET package', author='David Warde-Farley', author_email='[email protected]', url='github.com/dwf/glmnet-python', license='GPL2', requires=['NumPy (>= 1.3)'], **config_dict)

roseperrone avatar Dec 10 '13 20:12 roseperrone