mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 17:38:02 +00:00
76a7609f7f
* Update nb * Update dependency * Pass marg arg * Add mu sampling * Update imprts * Move cosmography to a ceparate module * Add mock void * Check Vext likelihoo * Add void mock * Add void mocks
40 lines
971 B
Python
40 lines
971 B
Python
from setuptools import find_packages, setup
|
|
|
|
BUILD_REQ = ["numpy", "scipy"]
|
|
INSTALL_REQ = BUILD_REQ
|
|
INSTALL_REQ += [
|
|
"astropy",
|
|
"colossus",
|
|
"h5py",
|
|
"healpy",
|
|
"joblib",
|
|
"mpi4py",
|
|
"numba",
|
|
"numpyro",
|
|
"interpax"
|
|
"quadax",
|
|
"scikit-learn",
|
|
"tqdm",
|
|
]
|
|
|
|
setup(
|
|
name="csiborgtools",
|
|
version="0.3",
|
|
description="CSiBORG analysis tools",
|
|
url="https://github.com/Richard-Sti/csiborgtools",
|
|
author="Richard Stiskalek",
|
|
author_email="richard.stiskalek@protonmail.com",
|
|
license="GPL-3.0",
|
|
packages=find_packages(),
|
|
python_requires=">=3.6",
|
|
build_requires=BUILD_REQ,
|
|
setup_requires=BUILD_REQ,
|
|
install_requires=INSTALL_REQ,
|
|
classifiers=[
|
|
"Development Status :: 1 - Planning",
|
|
"Intended Audience :: Science/Research",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9"
|
|
]
|
|
)
|