diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml new file mode 100644 index 0000000..306c24d --- /dev/null +++ b/.pre-commit-hooks.yaml @@ -0,0 +1,7 @@ + - id: pycycle + name: Pycycle - the circular dependency finder + language: python + entry: pycycle + types: [python] + pass_filenames: false + args: [--here] \ No newline at end of file diff --git a/pycycle/__main__.py b/pycycle/__main__.py new file mode 100644 index 0000000..4cafccb --- /dev/null +++ b/pycycle/__main__.py @@ -0,0 +1,3 @@ +from .cli import cli + +cli()