Skip to content

Commit 8036bc8

Browse files
authored
Merge pull request #35 from GernotMaier/renaming-of-repository
New naming
2 parents f5f3c9e + 4ac2d5e commit 8036bc8

File tree

5 files changed

+17
-25
lines changed

5 files changed

+17
-25
lines changed

.pre-commit-config.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@ repos:
66
- id: isort
77
args: ["--profile", "black", "--filter-files"]
88
- repo: https://github.com/psf/black
9-
rev: 24.3.0
9+
rev: 24.4.2
1010
hooks:
1111
- id: black
1212
args: ["--line-length=100"]
1313
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html?highlight=other%20tools#flake8
1414
- repo: https://github.com/PyCQA/flake8
15-
rev: 7.0.0
15+
rev: 7.1.0
1616
hooks:
1717
- id: flake8
1818
args: ["--max-line-length=100", "--extend-ignore=E203,E712"]
1919
# https://github.com/pre-commit/pre-commit-hooks
2020
- repo: https://github.com/pre-commit/pre-commit-hooks
21-
rev: v4.5.0
21+
rev: v4.6.0
2222
hooks:
2323
- id: trailing-whitespace
2424
- id: end-of-file-fixer
2525
# https://github.com/HunterMcGushion/docstr_coverage
2626
- repo: https://github.com/HunterMcGushion/docstr_coverage
27-
rev: v2.3.1 # most recent docstr-coverage release or commit sha
27+
rev: v2.3.2 # most recent docstr-coverage release or commit sha
2828
hooks:
2929
- id: docstr-coverage
3030
args: ["--verbose", "2", "--fail-under", "70.", "v2dl5"]
3131
# codespell
3232
- repo: https://github.com/codespell-project/codespell
33-
rev: v2.2.6
33+
rev: v2.3.0
3434
hooks:
3535
- id: codespell

CITATION.cff

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
cff-version: 1.2.0
22
title: >-
3-
V2DL5 - high-level analysis for VERITAS with gammapy
3+
V2DL5-Binary-Analysis - High-level analysis for binary light curves for VERITAS
44
message: Please cite this software using these metadata.
55
type: software
66
authors:
77
- given-names: Gernot
88
family-names: Maier
99
affiliation: DESY
1010
orcid: 'https://orcid.org/0000-0001-9868-4700'
11-
repository-code: 'https://github.com/GernotMaier/V2DL5'
11+
repository-code: 'https://github.com/GernotMaier/V2DL5-Binary-Analysis'
1212
doi: 10.5281/zenodo.8254372
1313
license: BSD-3-Clause

README.md

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,19 @@
1-
# V2DL5 - high-level analysis for VERITAS with gammapy
1+
# V2DL5 - High-level analysis for binary light curves for VERITAS
22

3+
[![LICENSE](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://github.com/GernotMaier/V2DL5-Binary-Analysis/blob/main/LICENSE)
34
[![DOI](https://zenodo.org/badge/673002313.svg)](https://zenodo.org/badge/latestdoi/673002313)
4-
[![gammapy](https://img.shields.io/badge/powered%20by-gammapy-orange.svg?style=flat)](https://www.gammapy.org/)
5+
56
[![GitHub Super-Linter](https://github.com/GernotMaier/V2DL5/actions/workflows/linter.yml/badge.svg)](https://github.com/marketplace/actions/super-linter)
7+
[![gammapy](https://img.shields.io/badge/powered%20by-gammapy-orange.svg?style=flat)](https://www.gammapy.org/)
68

7-
This is a collection of simple scripts for the high-level analysis of VERITAS data with gammapy.
8-
The focus is on binary light curve analysis, meaning this is mostly a reflected region analysis with some binary specific tools.
9+
This is a collection of simple scripts for the high-level analysis of binary data for VERITAS.
10+
Focus is on the usage of gammapy for binary light curve analysis, meaning this is mostly a reflected region analysis with some binary specific tools.
911

1012
Allows to run analysis scripts for a given list of runs or for a cone search around the given on\_region direction.
1113

1214
- source detection analysis including integral flux (or flux upper limits), reflection region model
1315
- spectral analysis, reflected region model
1416

15-
Reminder on data levels (as defined e.g., by CTAO):
16-
17-
- DL3: event lists for gamma-ray like events
18-
- DL4: binned data (in time, space, energy)
19-
- DL5: science data products (e.g., sky maps, energy spectra, light curves)
20-
21-
This repository provides scripts to generate DL5 science data products.
22-
2317
## Acknowledgement
2418

2519
This work relies heavily on the [gammapy](https://gammapy.org/) development and especially on the excellent [tutorials](https://docs.gammapy.org/1.1/tutorials/index.html) provided by the gammapy team.

environment.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# create: mamba env create -f environment.yml
33
# activate: conda activate v2dl5
44
# update: mamba env update -f environment.yml --prune
5+
# update (micromamba): micromamba update -f environment.yml
56
#
67
name: v2dl5
78
channels:

pyproject.toml

+3-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ write_to = "v2dl5/_version.py"
1212
[project]
1313
name = "v2dl5"
1414
dynamic = ["version"]
15-
description = "High-level analysis for VERITAS with gammapy"
15+
description = "High-level analysis for binary light curves for VERITAS"
1616
readme = "README.md"
1717
license = { file="LICENSE" }
1818
authors = [
@@ -42,8 +42,8 @@ dependencies = [
4242
]
4343

4444
[project.urls]
45-
"repository" = "https://github.com/GernotMaier/V2DL5"
46-
"bug tracker" = "https://github.com/GernotMaier/V2DL5/issues"
45+
"repository" = "https://github.com/GernotMaier/V2DL5-Binary-Analysis"
46+
"bug tracker" = "https://github.com/GernotMaier/V2DL5-Binary-Analysis/issues"
4747

4848
[project.scripts]
4949
v2dl5-generate-runlist = "v2dl5.scripts.generate_runlist:main"
@@ -57,9 +57,6 @@ norecursedirs=["build", "docs/_build"]
5757
addopts="-v"
5858
testpaths="v2dl5/tests/"
5959

60-
[tool.black]
61-
line_length = 100
62-
6360
[tool.isort]
6461
profile = "black"
6562
filter_files = true

0 commit comments

Comments
 (0)