-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
33 lines (30 loc) · 972 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
from setuptools import find_packages, setup
PACKAGENAME = "c3dev"
VERSION = "0.1.0"
setup(
name=PACKAGENAME,
version=VERSION,
author=["Chris Blake", "Andrew Hearin", "Alexie Leauthaud", "John Moustakas"],
author_email=["[email protected]"],
description="Development code and documentation for the DESI C3 Working Group",
long_description="Development code and documentation for the DESI C3 Working Group",
install_requires=[
"numpy",
"scipy",
"healpy",
"astropy",
"numba",
"halotools",
"h5py",
"jax",
],
packages=find_packages(),
url="https://github.com/cosmodesi/c3dev",
package_data={
"c3dev": (
"galmocks/galhalo_models/baryonic_effects/ds_fit_data/*/*.txt",
"galmocks/galhalo_models/baryonic_effects/tests/testing_data/*.txt",
"galmocks/galhalo_models/baryonic_effects/tests/testing_data/*.npy",
)
},
)