| #!/usr/bin/env python | |
| # SPDX-FileCopyrightText: Copyright (c) 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved. | |
| # SPDX-License-Identifier: Apache-2.0 | |
| from setuptools import setup, find_packages | |
| # For compatibility with older tools, but pyproject.toml is the primary configuration | |
| setup( | |
| packages=find_packages(include=['nemotron_graphic_elements_v1', 'nemotron_graphic_elements_v1.*']), | |
| ) | |