-
Notifications
You must be signed in to change notification settings - Fork 96
/
setup.py
32 lines (29 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
30
31
32
#!/usr/bin/env python
from distutils.core import setup
import nonconformist
setup(
name = 'nonconformist',
packages = ['nonconformist'],
version = nonconformist.__version__,
description = 'Python implementation of the conformal prediction framework.',
author = 'Henrik Linusson',
author_email = '[email protected]',
url = 'https://github.com/donlnz/nonconformist',
download_url = 'https://github.com/donlnz/nonconformist/tarball/' + nonconformist.__version__,
install_requires = ['numpy', 'scikit-learn', 'scipy', 'pandas'],
keywords = ['conformal prediction',
'machine learning',
'classification',
'regression'],
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
],
)
# Authors: Henrik Linusson