BoLiu's picture
pip-install2 (#7)
b903fe1 verified
raw
history blame contribute delete
406 Bytes
#!/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.*']),
)