Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Fang Yuedong
injection_pipeline
Commits
3b445740
Commit
3b445740
authored
Oct 22, 2024
by
Fang Yuedong
Browse files
add setup.py
parent
ddf8503d
Pipeline
#7049
failed with stages
in 1 minute and 59 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
3b445740
*.fits
build/*
*.cat
*.egg
*.log
*.egg-info/*
*.list
*.png
*.png
*.pyc
*.pyc
*.so
*.so
*.out
\ No newline at end of file
*pnodes
*-checkpoint.ipynb
\ No newline at end of file
injection_pipeline/Catalog/data/SLOAN_SDSS.g.fits
0 → 100644
View file @
3b445740
File added
injection_pipeline/Catalog/data/lsst_throuput_g.fits
0 → 100644
View file @
3b445740
File added
requirements.txt
0 → 100644
View file @
3b445740
numpy
==1.26.4
astropy
==6.0.1
scipy
==1.11.4
GalSim
==2.5.2
PyYAML
==6.0.1
sep
==1.2.1
healpy
==1.16.6
h5py
==3.11.0
Cython
==3.0.6
numba
==0.59.1
psutil
==5.9.8
toml
==0.10.2
lmfit
==1.2.2
\ No newline at end of file
setup.py
0 → 100644
View file @
3b445740
from
setuptools
import
setup
,
find_packages
with
open
(
"requirements.txt"
,
"r"
)
as
f
:
requirements
=
[
req
.
strip
()
for
req
in
f
.
readlines
()
if
not
req
.
startswith
(
"#"
)
and
req
.
__contains__
(
"=="
)
]
setup
(
name
=
'csst_source_injection'
,
version
=
'1.0.0'
,
packages
=
find_packages
(),
package_data
=
{
'injection_pipeline.Catalog.data'
:
[
"*.fits"
],
},
python_requires
=
">=3.11"
,
install_requires
=
requirements
,
)
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment