File size: 406 Bytes
b903fe1 |
1 2 3 4 5 6 7 8 9 10 11 12 |
#!/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.*']),
)
|