-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
23 lines (19 loc) · 901 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
#!/usr/bin/env python
from setuptools import setup, find_packages
long_description='''
Keras-Uncertainty is a library to perform uncertainty quantification of Machine Learning models, focusing on Epistemic Uncertainty.
Basically we need models that know what they don't know. This has a variety of real world applications.
This library is only compatible with Python 3.x.
'''
setup(name='Keras-Uncertainty',
version='0.0.1',
description='Uncertainty Quantification for Keras models',
long_description=long_description,
author='Matias Valdenegro-Toro',
author_email='[email protected]',
url='https://github.com/mvaldenegro/keras-uncertainty',
download_url='https://github.com/mvaldenegro/keras-uncertainty/releases',
license='LGPLv3',
install_requires=['keras>=2.2.0', 'numpy', 'tqdm', 'scipy'],
packages=find_packages()
)