Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIx Copyright attribution #51

Merged
merged 2 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading