Files
unbundle/setup.py
T
William Douglas 1fe041a968 Improve cycle detection
Keep a set of any bundle we've inspected before as a different set
compared to the current bundles being inspected as part of the depth
first chain.

This fixes a major performance problem with re-evaluating bundles that
have already been seen before while still allowing cycles to be
spotted and accurately reported in the bundle configurations.

Signed-off-by: William Douglas <william.r.douglas@gmail.com>
2024-02-14 11:40:21 -08:00

8 lines
106 B
Python

from setuptools import setup
setup(
name="unbundle",
version="1.0.0",
scripts=["unbundle"]
)