This repository was archived by the owner on Dec 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 1.37 KB
/
Copy pathsetup.py
File metadata and controls
29 lines (24 loc) · 1.37 KB
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
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = ''
setup(
long_description=readme,
name='GPJax',
version='0.1.0',
description='Minimal Gaussian process library in JAX with custom state management.',
python_requires='==3.*,>=3.8.0',
author='Aidan Scannell',
author_email='scannell.aidan@gmail.com',
packages=['GPJax.config', 'GPJax.custom_types', 'GPJax.kernels', 'GPJax.likelihoods', 'GPJax.models', 'GPJax.parameters', 'GPJax.prediction', 'GPJax.utilities'],
package_dir={"": "."},
package_data={},
install_requires=['chex==0.*,>=0.0.7', 'dataclasses; python_version == "3.*" and python_version >= "3.6.0"', 'jax==0.*,>=0.2.13', 'jaxlib==0.*,>=0.1.59', 'jupyter==1.*,>=1.0.0', 'matplotlib==3.*,>=3.3.2', 'multidispatch==0.*,>=0.2.0', 'mypy==0.*,>=0.812.0', 'numpy==1.*,>=1.19.4', 'tensor-annotations', 'tfp-nightly==0.*,>=0.13.0.a20210510', 'torch==1.*,>=1.8.1'],
dependency_links=['git+https://github.com/deepmind/tensor_annotations#egg=tensor-annotations'],
extras_require={"dev": ["black==20.*,>=20.8.0.b1", "isort==5.*,>=5.6.4", "pyflakes==2.*,>=2.2.0", "pytest==6.*,>=6.2.2", "pytest-cov==2.*,>=2.11.1", "python-language-server==0.*,>=0.36.1"]},
)