-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (35 loc) · 1014 Bytes
/
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
from setuptools import setup, find_packages
setup(name="mocksurvey",
version="0.0.1.dev9",
description="Some useful tools for conducting realistic "
"mock surveys out of galaxies populated by `halotools` "
"and `UniverseMachine` models.",
url="http://github.com/AlanPearl/mocksurvey",
author="Alan Pearl",
author_email="alanpearl@pitt.edu",
license="MIT",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"wget",
"requests",
"natsort",
"h5py",
"numpy",
"scipy",
"pandas",
"astropy",
"scikit-learn",
"packaging",
"halotools>=0.7",
"tqdm",
# "colossus",
# "Corrfunc",
# "emcee>=3",
# "mpi4py",
# "schwimmbad",
# "corner",
# "matplotlib",
],
zip_safe=True,
)