mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
* feat: Add license enrichment from pypi to python packages * Implement license caching and improve test coverage --------- Signed-off-by: Tim Olshansky <456103+timols@users.noreply.github.com>
23 lines
472 B
Python
23 lines
472 B
Python
from setuptools import setup
|
|
|
|
# Sample setup.py from the pytest project with added comments specific
|
|
# to the cataloger
|
|
|
|
INSTALL_REQUIRES = [
|
|
"certifi==2025.10.5",
|
|
]
|
|
|
|
|
|
def main():
|
|
setup(
|
|
use_scm_version={"write_to": "src/_pytest/_version.py"},
|
|
setup_requires=["setuptools-scm", "setuptools>=40.0"],
|
|
package_dir={"": "src"},
|
|
extras_require={},
|
|
install_requires=INSTALL_REQUIRES,
|
|
)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|