Skip to content

Commit 7fd7342

Browse files
Update citation2 (#540)
* update citation * ignore this error
1 parent 6b902aa commit 7fd7342

2 files changed

Lines changed: 21 additions & 32 deletions

File tree

README.md

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -108,20 +108,14 @@ Issues marked with `contributions welcome` or `good first issue` are particularl
108108
If you use this software for your research, please cite using the following bibtex entry:
109109

110110
```
111-
@ARTICLE{mendoza2024btk,
112-
author = {{Mendoza}, Ismael and {Torchylo}, Andrii and {Sainrat}, Thomas and {Guinot}, Axel and {Boucaud}, Alexandre and {Paillassa}, Maxime and {Avestruz}, Camille and {Adari}, Prakruth and {Aubourg}, Eric and {Biswas}, Biswajit and {Buchanan}, James and {Burchat}, Patricia and {Doux}, Cyrille and {Joseph}, Remy and {Kamath}, Sowmya and {Malz}, Alex I. and {Merz}, Grant and {Miyatake}, Hironao and {Roucelle}, C{\'e}cile and {Zhang}, Tianqing and {the LSST Dark Energy Science Collaboration}},
113-
title = "{The Blending ToolKit: A simulation framework for evaluation of galaxy detection and deblending}",
114-
journal = {arXiv e-prints},
115-
keywords = {Astrophysics - Instrumentation and Methods for Astrophysics, Astrophysics - Cosmology and Nongalactic Astrophysics},
116-
year = 2024,
117-
month = sep,
118-
eid = {arXiv:2409.06986},
119-
pages = {arXiv:2409.06986},
120-
doi = {10.48550/arXiv.2409.06986},
121-
archivePrefix = {arXiv},
122-
eprint = {2409.06986},
123-
primaryClass = {astro-ph.IM},
124-
adsurl = {https://ui.adsabs.harvard.edu/abs/2024arXiv240906986M},
125-
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
111+
@article{article,
112+
author = {Mendoza, Ismael and Torchylo, Andrii and Sainrat, Thomas and Guinot, Axel and Boucaud, Alexandre and Paillasa, Maxime and Avestruz, Camille and Adari, Prakruth and Aubourg, Eric and Biswas, Biswajit and Buchanan, James and Burchat, Patricia and Doux, Cyrille and Joseph, Remy and Kamath, Sowmya and Malz, Alex and Merz, Grant and Miyatake, Hironao and Roucelle, Cécile and Zhang, Tianqing},
113+
year = {2025},
114+
month = {02},
115+
pages = {},
116+
title = {The Blending ToolKit: A simulation framework for evaluation of galaxy detection and deblending},
117+
volume = {8},
118+
journal = {The Open Journal of Astrophysics},
119+
doi = {10.33232/001c.129699}
126120
}
127121
```

pyproject.toml

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ dependencies = [
3939
"h5py>=3.12.1",
4040
"tqdm>=4.67.1",
4141
"astropy>=5.1.0,<7.0.0",
42-
"matplotlib>=3.7.0", # scarlet needs this
42+
"matplotlib>=3.7.0", # scarlet needs this
4343
]
4444

4545
[project.optional-dependencies]
@@ -55,21 +55,16 @@ dev = [
5555
"sphinx>=7.4.7",
5656
"sphinx-rtd-theme>=1.2.1",
5757
]
58-
scarlet = [
59-
"peigen>=0.0.9",
60-
"autograd>=1.5.0",
61-
"proxmin>=0.6.12",
62-
"pybind11>=2.10.3",
63-
]
58+
scarlet = ["peigen>=0.0.9", "autograd>=1.5.0", "proxmin>=0.6.12", "pybind11>=2.10.3"]
6459

6560
[project.urls]
66-
Homepage = "https://lsstdesc.org/BlendingToolKit/index.html"
67-
Repository = "https://github.com/LSSTDESC/BlendingToolKit"
61+
Homepage = "https://lsstdesc.org/BlendingToolKit/index.html"
62+
Repository = "https://github.com/LSSTDESC/BlendingToolKit"
6863
"Bug Tracker" = "https://github.com/LSSTDESC/BlendingToolKit/issues"
6964

7065

7166
[build-system]
72-
requires = ["setuptools>=61.0"]
67+
requires = ["setuptools>=61.0"]
7368
build-backend = "setuptools.build_meta"
7469

7570
[tool.setuptools]
@@ -107,7 +102,7 @@ exclude = [
107102
]
108103

109104
# Copying over black configuration
110-
line-length = 100
105+
line-length = 100
111106
indent-width = 4
112107

113108
# Assume Python 3.12
@@ -129,10 +124,10 @@ select = ["E", "F", "W", "I", "D", "PL", "RUF", "SIM", "RET"]
129124
# PLR2004: Magic value comparison is OK most of the time.
130125
# PLR0913: "Too many arguments in function definition", we should fix some of these eventually.
131126
# SIM118: Too many places where we use `k in table.keys()`, and table is not a dict.
132-
ignore = ["PLR2004", "PLR0913", "SIM118"]
127+
ignore = ["PLR2004", "PLR0913", "SIM118", "PLC0415"]
133128

134129
# Allow fix for all enabled rules (when `--fix`) is provided.
135-
fixable = ["ALL"]
130+
fixable = ["ALL"]
136131
unfixable = []
137132

138133
# Allow unused variables when underscore-prefixed.
@@ -167,14 +162,14 @@ docstring-code-line-length = "dynamic"
167162

168163

169164
[tool.ruff.lint.per-file-ignores]
170-
"__init__.py" = ["E402", "I", "F"]
165+
"__init__.py" = ["E402", "I", "F"]
171166
"**/{tests,docs,tools}/*" = ["E402", "D", "PLR0915"]
172-
"**/*.ipynb" = ["I"]
167+
"**/*.ipynb" = ["I"]
173168

174169
[tool.ruff.lint.pydocstyle]
175170
convention = "google"
176171

177172
[tool.pytest.ini_options]
178-
addopts = "-ra"
173+
addopts = "-ra"
179174
minversion = "6.0"
180-
testpaths = ["tests"]
175+
testpaths = ["tests"]

0 commit comments

Comments
 (0)