Skip to content

Commit

Permalink
Merge pull request #51 from scikit-hep/feature-copyright-fix
Browse files Browse the repository at this point in the history
FIx Copyright attribution
  • Loading branch information
aryan26roy authored Nov 6, 2024
2 parents 9a0371c + 1fc73c4 commit 95df5d4
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 50 deletions.
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

BSD 3-Clause License

Copyright (c) 2023, Aryan Roy.
Copyright (C) 2016-2024, The Scikit-HEP Administrators.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand All @@ -14,7 +14,7 @@ modification, are permitted provided that the following conditions are met:
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

* Neither the name of the vector package developers nor the names of its
* Neither the name of the copyright holders nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# -- Project information -----------------------------------------------------

project = "formulate"
copyright = "2023, Aryan Roy"
copyright = "2016-2024, The Scikit-HEP Administrators"
author = "Aryan Roy"


Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ build-backend = "hatchling.build"
[project]
name = "formulate"
authors = [
{ name = "Aryan Roy", email = "[email protected]" },
{ name = "Chris Burr", email = "[email protected]" },
{ name = "Aryan Roy", email = "[email protected]" }
]
maintainers = [
{ name = "The Scikit-HEP admins", email = "[email protected]" },
Expand Down
5 changes: 1 addition & 4 deletions src/formulate/AST.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
"""
Copyright (c) 2023 Aryan Roy. All rights reserved.
# Licensed under a 3-clause BSD style license, see LICENSE.

formulate: Easy conversions between different styles of expressions
"""
from __future__ import annotations

from dataclasses import dataclass
Expand Down
6 changes: 1 addition & 5 deletions src/formulate/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""
Copyright (c) 2023 Aryan Roy. All rights reserved.
formulate: Easy conversions between different styles of expressions
"""
# Licensed under a 3-clause BSD style license, see LICENSE.

from __future__ import annotations

Expand Down
7 changes: 1 addition & 6 deletions src/formulate/_compat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
"""
Copyright (c) 2023 Aryan Roy. All rights reserved.
formulate: Easy conversions between different styles of expressions
"""

# Licensed under a 3-clause BSD style license, see LICENSE.

from __future__ import annotations
7 changes: 1 addition & 6 deletions src/formulate/_compat/typing.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
"""
Copyright (c) 2023 Aryan Roy. All rights reserved.
formulate: Easy conversions between different styles of expressions
"""

# Licensed under a 3-clause BSD style license, see LICENSE.

from __future__ import annotations

Expand Down
5 changes: 1 addition & 4 deletions src/formulate/_utils.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
"""
Copyright (c) 2023 Aryan Roy. All rights reserved.
# Licensed under a 3-clause BSD style license, see LICENSE.

formulate: Easy conversions between different styles of expressions
"""
from __future__ import annotations

from . import numexpr_parser
Expand Down
6 changes: 1 addition & 5 deletions src/formulate/convert_ptree.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
"""
Copyright (c) 2023 Aryan Roy. All rights reserved.
formulate: Easy conversions between different styles of expressions
"""
# Licensed under a 3-clause BSD style license, see LICENSE.

from . import matching_tree
from . import numexpr_parser
Expand Down
7 changes: 1 addition & 6 deletions src/formulate/error_handler.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
"""
Copyright (c) 2023 Aryan Roy. All rights reserved.
formulate: Easy conversions between different styles of expressions
"""

# Licensed under a 3-clause BSD style license, see LICENSE.

from __future__ import annotations

Expand Down
7 changes: 1 addition & 6 deletions src/formulate/matching_tree.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
"""
Copyright (c) 2023 Aryan Roy. All rights reserved.
formulate: Easy conversions between different styles of expressions
"""

# Licensed under a 3-clause BSD style license, see LICENSE.

from . import numexpr_parser
from . import ttreeformula_parser
Expand Down
5 changes: 1 addition & 4 deletions src/formulate/toast.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
"""
Copyright (c) 2023 Aryan Roy. All rights reserved.
# Licensed under a 3-clause BSD style license, see LICENSE.

formulate: Easy conversions between different styles of expressions
"""
from __future__ import annotations

from . import AST, matching_tree
Expand Down

0 comments on commit 95df5d4

Please sign in to comment.