-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
39 lines (35 loc) · 1.37 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
__author__ = "Maxim Ziatdinov"
__maintainer__ = "Maxim Ziatdinov"
__email__ = "[email protected]"
from setuptools import setup, find_packages
import os
module_dir = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(module_dir, 'neurobayes/__version__.py')) as f:
__version__ = f.read().split("'")[1]
if __name__ == "__main__":
setup(
name='NeuroBayes',
python_requires='>=3.9',
version=__version__,
description='Gaussian processes in NumPyro and JAX',
long_description=open(os.path.join(module_dir, 'README.md')).read(),
long_description_content_type='text/markdown',
url='https://github.com/ziatdinovmax/NeuroBayes/',
author='Maxim Ziatdinov',
author_email='[email protected]',
license='MIT license',
packages=find_packages(),
zip_safe=False,
install_requires=[
'jax>=0.4.0,<=0.4.31',
'jaxlib>=0.4.0,<=0.4.31',
'numpyro>=0.13.0',
'flax>=0.8.4'
],
classifiers=['Programming Language :: Python',
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Topic :: Scientific/Engineering']
)