Skip to content
Open
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 FILE-HEADER
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# SPDX-FileCopyrightText: Copyright (c), CloudZero, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright (c) CloudZero, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
9 changes: 2 additions & 7 deletions javascript/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
/**
* Copyright (c) CloudZero - ALL RIGHTS RESERVED - PROPRIETARY AND CONFIDENTIAL
* Unauthorized copying of this file and/or project, via any medium is strictly prohibited.
* Direct all questions to legal@cloudzero.com
*
* CHANGELOG: 2025-11-17 - Initial creation (erik.peterson)
*/
// SPDX-FileCopyrightText: Copyright (c) CloudZero, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

import eslint from "@eslint/js";
import tseslint from "typescript-eslint";
Expand Down
9 changes: 2 additions & 7 deletions javascript/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
/**
* Copyright (c) CloudZero - ALL RIGHTS RESERVED - PROPRIETARY AND CONFIDENTIAL
* Unauthorized copying of this file and/or project, via any medium is strictly prohibited.
* Direct all questions to legal@cloudzero.com
*
* CHANGELOG: 2025-11-17 - Initial creation (erik.peterson)
*/
// SPDX-FileCopyrightText: Copyright (c) CloudZero, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

module.exports = {
preset: "ts-jest",
Expand Down
9 changes: 2 additions & 7 deletions javascript/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
/**
* Copyright (c) CloudZero - ALL RIGHTS RESERVED - PROPRIETARY AND CONFIDENTIAL
* Unauthorized copying of this file and/or project, via any medium is strictly prohibited.
* Direct all questions to legal@cloudzero.com
*
* CHANGELOG: 2025-11-17 - Initial creation (erik.peterson)
*/
// SPDX-FileCopyrightText: Copyright (c) CloudZero, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

/**
* CloudZero TypeScript Template Package
Expand Down
9 changes: 2 additions & 7 deletions javascript/tests/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
/**
* Copyright (c) CloudZero - ALL RIGHTS RESERVED - PROPRIETARY AND CONFIDENTIAL
* Unauthorized copying of this file and/or project, via any medium is strictly prohibited.
* Direct all questions to legal@cloudzero.com
*
* CHANGELOG: 2025-11-17 - Initial creation (erik.peterson)
*/
// SPDX-FileCopyrightText: Copyright (c) CloudZero, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

import { greet, VERSION } from "../src/index";

Expand Down
5 changes: 2 additions & 3 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
requires = ["setuptools>=77.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -8,7 +8,7 @@ dynamic = ["version"]
description = "CloudZero Open Source Template"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
license = "Apache-2.0"
authors = [
{ name = "CloudZero", email = "support@cloudzero.com" },
]
Expand All @@ -18,7 +18,6 @@ keywords = [
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Unix",
Expand Down
7 changes: 2 additions & 5 deletions python/src/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# Copyright (c) CloudZero - ALL RIGHTS RESERVED - PROPRIETARY AND CONFIDENTIAL
# Unauthorized copying of this file and/or project, via any medium is strictly prohibited.
# Direct all questions to legal@cloudzero.com
#
# CHANGELOG: 2025-11-17 - Initial creation (erik.peterson)
# SPDX-FileCopyrightText: Copyright (c) CloudZero, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

"""
CloudZero Python Template Package.
Expand Down
7 changes: 2 additions & 5 deletions python/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Copyright (c) CloudZero - ALL RIGHTS RESERVED - PROPRIETARY AND CONFIDENTIAL
# Unauthorized copying of this file and/or project, via any medium is strictly prohibited.
# Direct all questions to legal@cloudzero.com
#
# CHANGELOG: 2025-11-17 - Initial creation (erik.peterson)
# SPDX-FileCopyrightText: Copyright (c) CloudZero, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

"""Tests for CloudZero Python Template Package."""
7 changes: 2 additions & 5 deletions python/tests/test_example.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# Copyright (c) CloudZero - ALL RIGHTS RESERVED - PROPRIETARY AND CONFIDENTIAL
# Unauthorized copying of this file and/or project, via any medium is strictly prohibited.
# Direct all questions to legal@cloudzero.com
#
# CHANGELOG: 2025-11-17 - Initial creation (erik.peterson)
# SPDX-FileCopyrightText: Copyright (c) CloudZero, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

"""Example test file for demonstrating pytest setup."""

Expand Down
Loading