mirror of
https://github.com/clearlinux/unbundle.git
synced 2026-09-05 05:11:54 +00:00
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>
8 lines
106 B
Python
8 lines
106 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="unbundle",
|
|
version="1.0.0",
|
|
scripts=["unbundle"]
|
|
)
|