You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
with open(os.path.join('yaglm', '__init__.py'), 'r') as fid:
for line in (line.strip() for line in fid):
if line.startswith('__version__'):
version = line.split('=')[1].strip().strip('\'')
break
if version is None:
raise RuntimeError('Could not determine version')
install_requires = ['numpy',
'pandas',
'scikit-learn',
'scipy'
]
setup(name='yaglm',
version=version,
description='A python package for penalized generalized linear models that supports fitting and model selection for structured, adaptive and non-convex penalties.',