-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
44 lines (40 loc) · 1.57 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os import path
def get_long_description():
"""Get the long description from the README file."""
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'),
encoding='utf-8') as f:
lines = f.readlines()
return "".join(lines[:])
setup(
name='gpry',
version='2.0.0',
description='A package for fast bayesian inference of expensive Likelihoods',
long_description=get_long_description(),
long_description_content_type='text/markdown',
author='Jonas El Gammal, Jesus Torrado, Nils Schoeneberg and Christian Fidler',
author_email='[email protected]',
license='LGPL',
keywords=['inference', 'gaussianprocesses', 'sampling', 'cosmology'],
url='https://github.com/jonaselgammal/GPry',
project_urls={
'Documentation':
'https://gpry.readthedocs.io',
'Source': 'https://github.com/jonaselgammal/GPry',
},
packages=['gpry'],
package_data={'gpry': ["CobayaSampler.yaml"]},
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Astronomy',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
install_requires=['cobaya>=3.2.2', 'scikit-learn', 'dill', 'mpi4py']
)