Skip to content

Commit 7d5ad54

Browse files
Merge pull request #210 from scikit-hep/eduardo-add-license-statement
Add license statements to files
2 parents d563266 + 8ffe007 commit 7d5ad54

28 files changed

Lines changed: 230 additions & 11 deletions

src/hepstats/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
# Licensed under a 3-clause BSD style license, see LICENSES folder.
2+
13
from ._version import version as __version__

src/hepstats/hypotests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Licensed under a 3-clause BSD style license, see LICENSE.
1+
# Licensed under a 3-clause BSD style license, see LICENSES folder.
22
"""
33
Module for hypothesis tests, upper limits and confidence intervals calculations.
44
"""

src/hepstats/hypotests/parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Licensed under a 3-clause BSD style license, see LICENSE
1+
# Licensed under a 3-clause BSD style license, see LICENSES folder
22
"""
33
Module defining the parameter of interest classes, currently includes:
44

src/hepstats/modeling/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Licensed under a 3-clause BSD style license, see LICENSE.
1+
# Licensed under a 3-clause BSD style license, see LICENSES folder.
22
"""
33
Module for algorithms and methods used to model distributions.
44

src/hepstats/modeling/bayesian_blocks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Licensed under a 3-clause BSD style license, see LICENSE and LICENSE_ASTROML
1+
# Licensed under a 3-clause BSD style license, see LICENSES folder and LICENSE_ASTROML
22
"""
33
Bayesian Block implementation
44
=============================

src/hepstats/splot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Licensed under a 3-clause BSD style license, see LICENSE.
1+
# Licensed under a 3-clause BSD style license, see LICENSES folder.
22
"""
33
Module implementing the **sPlot** algorithm, see :cite:`Pivk:2004ty`.
44

src/hepstats/splot/exceptions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
# Licensed under a 3-clause BSD style license, see LICENSES folder.
12
"""
2-
Specific exceptions for the `splot` submodule
3+
Specific exceptions for the `splot` submodule.
34
"""
45

56
from __future__ import annotations

src/hepstats/splot/sweights.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Licensed under a 3-clause BSD style license, see LICENSES folder.
12
from __future__ import annotations
23

34
import warnings

src/hepstats/splot/warnings.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
# Licensed under a 3-clause BSD style license, see LICENSES folder.
12
"""
2-
Specific warnings for the `splot` submodule
3+
Specific warnings for the `splot` submodule.
34
"""
45

56
from __future__ import annotations

src/hepstats/utils/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Licensed under a 3-clause BSD style license, see LICENSES folder.
2+
13
from .fit import (
24
eval_pdf,
35
array2dataset,

0 commit comments

Comments
 (0)