-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (23 loc) · 1.03 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
from setuptools import setup, find_packages
import numpy
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='marcia',
packages=find_packages(),
version='0.1.0.dev0',
install_requires=['numpy', 'scipy', 'emcee', 'toml', 'tqdm','chainconsumer','getdist','numba'],
description='Multi tasking Gaussian Process for cosmological inference',
author='Anto Idicherian Lonappan, Balakrishna Sandeep Haridasu',
author_email='[email protected], [email protected]',
url='https://github.com/antolonappan/marcia',
long_description=long_description,
long_description_content_type="text/markdown",
package_data={'marcia': ['params.ini','GPconfig.ini','constants.ini',
'Data/Pantheon+/*.dat', 'Data/Pantheon+/*.cov',
'Data/Cosmic_Clocks/*.txt',
'Data/Alam2016/*.txt',
]},
include_package_data=True,
)