Skip to content

Commit

Permalink
Merge pull request #143 from sandialabs/update-license
Browse files Browse the repository at this point in the history
chore: Update LICENSE/COPYRIGHT info
  • Loading branch information
jmgate authored Jul 4, 2024
2 parents d9ec314 + aae82e5 commit 24af9f8
Show file tree
Hide file tree
Showing 16 changed files with 24 additions and 22 deletions.
6 changes: 6 additions & 0 deletions COPYRIGHT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Copyright

*Copyright © 2023, National Technology & Engineering Solutions of
Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
NTESS, the U.S. Government retains certain rights in this software.
All rights reserved.*
9 changes: 3 additions & 6 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
# 3-Clause BSD License
# BSD 3-Clause "New" or "Revised" License

_Copyright © 2023–2024, National Technology & Engineering Solutions of
Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
NTESS, the U.S. Government retains certain rights in this software.
All rights reserved._
Copyright 2023 NTESS.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
Expand All @@ -14,7 +11,7 @@ met:
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of Sandia National Laboratories nor the names of its
3. Neither the name of the copyright holder 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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ we'd love to have your help :grinning: Check out our

[contributors]: https://github.com/sandialabs/reverse_argparse/graphs/contributors

## License
## License & Copyright

See [LICENSE.md](LICENSE.md).
See [LICENSE.md](LICENSE.md) and [COPYRIGHT.md](COPYRIGHT.md).

## Credits

Expand Down
3 changes: 1 addition & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@

project = "reverse_argparse"
copyright = ( # noqa: A001
"2023–2024, National Technology & Engineering Solutions " # noqa: RUF001
"of Sandia, LLC (NTESS)"
"2023, National Technology & Engineering Solutions of Sandia, LLC (NTESS)"
)
author = "Jason M. Gates"
version = "1.0.8"
Expand Down
2 changes: 1 addition & 1 deletion example/basic.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""Basic ``reverse_argparse`` functionality."""

# © 2024 National Technology & Engineering Solutions of Sandia, LLC
# © 2023 National Technology & Engineering Solutions of Sandia, LLC
# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
# U.S. Government retains certain rights in this software.

Expand Down
2 changes: 1 addition & 1 deletion example/default_values.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""How ``reverse_argparse`` handles default values."""

# © 2024 National Technology & Engineering Solutions of Sandia, LLC
# © 2023 National Technology & Engineering Solutions of Sandia, LLC
# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
# U.S. Government retains certain rights in this software.

Expand Down
2 changes: 1 addition & 1 deletion example/post_processing.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""How ``reverse_argparse`` handles post-processing of arguments."""

# © 2024 National Technology & Engineering Solutions of Sandia, LLC
# © 2023 National Technology & Engineering Solutions of Sandia, LLC
# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
# U.S. Government retains certain rights in this software.

Expand Down
2 changes: 1 addition & 1 deletion example/pretty_printing.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""``reverse_argparse`` pretty-printing functionality."""

# © 2024 National Technology & Engineering Solutions of Sandia, LLC
# © 2023 National Technology & Engineering Solutions of Sandia, LLC
# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
# U.S. Government retains certain rights in this software.

Expand Down
2 changes: 1 addition & 1 deletion example/relative_references.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""How ``reverse_argparse`` handles relative references."""

# © 2024 National Technology & Engineering Solutions of Sandia, LLC
# © 2023 National Technology & Engineering Solutions of Sandia, LLC
# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
# U.S. Government retains certain rights in this software.

Expand Down
2 changes: 1 addition & 1 deletion example/subparsers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""How ``reverse_argparse`` handles subparsers."""

# © 2024 National Technology & Engineering Solutions of Sandia, LLC
# © 2023 National Technology & Engineering Solutions of Sandia, LLC
# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
# U.S. Government retains certain rights in this software.

Expand Down
2 changes: 1 addition & 1 deletion example/test_examples.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""Run all the examples and ensure their output is correct."""

# © 2024 National Technology & Engineering Solutions of Sandia, LLC
# © 2023 National Technology & Engineering Solutions of Sandia, LLC
# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
# U.S. Government retains certain rights in this software.

Expand Down
2 changes: 1 addition & 1 deletion reverse_argparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:func:`quote_arg_if_necessary` helper function.
"""

# © 2024 National Technology & Engineering Solutions of Sandia, LLC
# © 2023 National Technology & Engineering Solutions of Sandia, LLC
# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
# U.S. Government retains certain rights in this software.

Expand Down
2 changes: 1 addition & 1 deletion reverse_argparse/reverse_argparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
with spaces in them with quotes.
"""

# © 2024 National Technology & Engineering Solutions of Sandia, LLC
# © 2023 National Technology & Engineering Solutions of Sandia, LLC
# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
# U.S. Government retains certain rights in this software.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
To install, simply ``python3 -m pip install .`` in the repository root.
"""

# © 2024 National Technology & Engineering Solutions of Sandia, LLC
# © 2023 National Technology & Engineering Solutions of Sandia, LLC
# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
# U.S. Government retains certain rights in this software.

Expand Down
2 changes: 1 addition & 1 deletion test/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
directory.
"""

# © 2024 National Technology & Engineering Solutions of Sandia, LLC
# © 2023 National Technology & Engineering Solutions of Sandia, LLC
# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
# U.S. Government retains certain rights in this software.

Expand Down
2 changes: 1 addition & 1 deletion test/test_reverse_argparse.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""The unit test suite for the ``reverse_argparse`` package."""

# © 2024 National Technology & Engineering Solutions of Sandia, LLC
# © 2023 National Technology & Engineering Solutions of Sandia, LLC
# (NTESS). Under the terms of Contract DE-NA0003525 with NTESS, the
# U.S. Government retains certain rights in this software.

Expand Down

0 comments on commit 24af9f8

Please sign in to comment.