forked from bbalasub1/glmnet_python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 1.15 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import os, sys
from setuptools import setup, find_packages
# from numpy.distutils.core import setup, Extension
cmd = 'gfortran ./glmnet_python/GLMnet.f -fPIC -fdefault-real-8 -shared -o ./glmnet_python/GLMnet.so'
os.system(cmd)
setup(name='glmnet_python',
version = '0.2.0',
description = 'Python version of glmnet, from Stanford University',
long_description=open('README.md').read(),
url="https://github.com/bbalasub1/glmnet_python",
author = 'Trevor Hastie, Balakumar B.J.',
author_email = '[email protected]',
license = 'GPL-2',
packages=['glmnet_python'],
install_requires=['joblib>=0.10.3'],
package_data={'glmnet_python': ['*.so', 'glmnet_python/*.so']},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Operating System :: Unix',
],
keywords='glm glmnet ridge lasso elasticnet',
)