# # SPDX-FileCopyrightText: Copyright (c) 1993-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved. # SPDX-License-Identifier: Apache-2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # import sys from setuptools import find_packages, setup import polygraphy def no_publish(): blacklist = ["register"] for cmd in blacklist: if cmd in sys.argv: raise RuntimeError(f"Command '{cmd}' blacklisted") REQUIRED_PACKAGES = [] def main(): no_publish() setup( name="polygraphy", version=polygraphy.__version__, description="Polygraphy: A Deep Learning Inference Prototyping and Debugging Toolkit", long_description=open("README.md", "r", encoding="utf-8").read(), url="https://github.com/NVIDIA/TensorRT/tree/main/tools/Polygraphy", author="NVIDIA", author_email="svc_tensorrt@nvidia.com", classifiers=[ "Intended Audience :: Developers", "Programming Language :: Python :: 3", ], license="Apache 2.0", install_requires=REQUIRED_PACKAGES, packages=find_packages(exclude=("tests", "tests.*")), entry_points={"console_scripts": ["polygraphy=polygraphy.tools:main"]}, zip_safe=True, python_requires=">=3.6", ) if __name__ == "__main__": main()