-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (24 loc) · 931 Bytes
/
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'Non-IID Ridge Regression with latent (discrete) dependencies between examples.',
'url': 'https://github.com/nicococo/niidbox',
'author': 'Nico Goernitz',
'author_email': '[email protected]',
'version': '0.1',
'install_requires': ['nose', 'cvxopt', 'numba'],
'packages': ['niidbox'],
'scripts': [],
'name': 'niidbox',
'classifiers':['Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7']
}
setup(**config)