mirror of
https://github.com/Richard-Sti/csiborgtools.git
synced 2024-12-22 18:48:01 +00:00
161c27d995
* Create file system * add doc * add n_sim n_snap directly to paths * Move things to a single particle reader for consistency * add docstring * add srdcir, dumpdir and mmain_path * make boxunits work with paths * switch to using paths * add tempdumpdir * rm dependence on old functions * rm comment * rm unused import * go back to all imports * fix import bug * rm dependence on old functions * modernize code! * fix typo * fix typo * update fits to new data structureing * change docs * add julia repo * add setup * add install commands * ignore install files * add array flattening * update dependene * add positions reader * update manifest and projects * add func * update gitignore * pos matching progress * move file * rm comment * add velocities getter * fix bug * fix name bug * fix path bug * fix args func * add redshift calculation to catalogues * add shortcut to set n_sim and n_snap * if cond bug * add the cosine similarity * add verbosit iterator * add docs * update README * update README * update README
31 lines
942 B
Python
31 lines
942 B
Python
from setuptools import find_packages, setup
|
|
|
|
|
|
BUILD_REQ = ["numpy>=1.17.3", "scipy<1.9.0"]
|
|
INSTALL_REQ = BUILD_REQ
|
|
INSTALL_REQ += ["scikit-learn>=1.1.0",
|
|
"jax[cpu]>=0.3.23",
|
|
"tqdm>=4.64.1",
|
|
"astropy>=5.1",
|
|
],
|
|
|
|
setup(
|
|
name="csiborgtools",
|
|
version="0.1",
|
|
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.8",
|
|
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"]
|
|
)
|