mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 06:48:02 +00:00
ce55a2b47e
* Parallelize over simulations * Update docs * Update dependency * Update imports * Add adtitional dependencies * Update .gitignore * Update ERADME * Simplify numpyro GOF * Speed up GOF * Deepcopy samples * Update scripts * Add GPU acceleration * Select boxes * Update script * Optionally sample beta * Fix old code * Simplify code * Start saving log posterior * Start popping log_likeliood * Add imports * Add converting samples * Fix sctipt name * Add evidence with harmonic * Remove comment * Update imports * Update imports so that pylians not required * Stop requiring Pylians to be installed * Update submission scripts for loops * Update nb * Update nb * Add Manticore boxes * Add verbosity flag * Add bulk flow * Update script * Update nb * Update normalization * Update submit * Update nb
39 lines
956 B
Python
39 lines
956 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",
|
|
"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"
|
|
]
|
|
)
|