github.com/anchore/syft@v1.38.2/syft/pkg/cataloger/python/test-fixtures/pypi-remote/setup.py (about)

     1  from setuptools import setup
     2  
     3  # Sample setup.py from the pytest project with added comments specific
     4  # to the cataloger
     5  
     6  INSTALL_REQUIRES = [
     7      "certifi==2025.10.5",
     8  ]
     9  
    10  
    11  def main():
    12      setup(
    13          use_scm_version={"write_to": "src/_pytest/_version.py"},
    14          setup_requires=["setuptools-scm", "setuptools>=40.0"],
    15          package_dir={"": "src"},
    16          extras_require={},
    17          install_requires=INSTALL_REQUIRES,
    18      )
    19  
    20  
    21  if __name__ == "__main__":
    22      main()