-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (42 loc) · 1.29 KB
/
pyproject.toml
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
37
38
39
40
41
42
43
44
45
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"chromatic_shear_sims" = [
"data/darksky.dat",
"data/total_u.dat",
"data/total_g.dat",
"data/total_r.dat",
"data/total_i.dat",
"data/total_z.dat",
"data/total_y.dat",
]
[project]
name = "chromatic-shear-sims"
license = {file = "LICENSE"}
readme = "README.md"
description = ""
authors = [
{name = "Sidney Mau", email = "sidneymau@gmail.com" }
]
dynamic = ["version"]
dependencies = [
"astropy",
# "chromatic_weak_lensing[diffsky,roman_rubin,btsettl,lsst_sim] @ git+https://github.com/sidneymau/chromatic-weak-lensing.git",
"chromatic_weak_lensing[diffsky,roman_rubin,btsettl,lsst_sim]",
"galsim",
"matplotlib",
"metadetect",
"ngmix",
"numpy",
"pyarrow",
"pyyaml",
"rich",
"scipy",
]
[project.scripts]
compute-colors-chromatic-shear-sim = "chromatic_shear_sims.scripts.compute_colors:main"
plot-scene-chromatic-shear-sim = "chromatic_shear_sims.scripts.plot_scene:main"
plot-obs-chromatic-shear-sim = "chromatic_shear_sims.scripts.plot_obs:main"
run-chromatic-shear-sim = "chromatic_shear_sims.scripts.run:main"
aggregate-chromatic-shear-sim = "chromatic_shear_sims.scripts.aggregate:main"
measure-chromatic-shear-sim = "chromatic_shear_sims.scripts.measure:main"