-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
48 lines (44 loc) · 1.56 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""Uncertainty Metrics setup.py."""
import os
import sys
from setuptools import find_packages
from setuptools import setup
# To enable importing version.py directly, we add its path to sys.path.
version_path = os.path.join(os.path.dirname(__file__), 'uncertainty_metrics')
sys.path.append(version_path)
from version import __version__ # pylint: disable=g-import-not-at-top
setup(
name='uncertainty_metrics',
version=__version__,
description='Uncertainty Metrics',
author='Uncertainty Metrics Users',
author_email='[email protected]',
url='http://github.com/google/uncertainty_metrics',
license='Apache 2.0',
packages=find_packages(),
install_requires=[],
extras_require={
'numpy': ['numpy>=1.7',
'matplotlib>=2.0.0',
'scipy>=1.0.0',
'sklearn>=0.20.0'],
'tensorflow': ['tensorflow>=2.0.0',
'tensorflow_probability>=0.9',
'numpy>=1.7',
'matplotlib>=2.0.0',
'scipy>=1.0.0',
'sklearn>=0.20.0'],
'tf-nightly': ['tf-nightly'],
'tests': [
'absl-py>=0.5.0',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
keywords='probabilistic programming tensorflow machine learning',
)