├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── Makefile ├── README.md ├── action.yml ├── list_python_dependencies.py ├── pyproject.toml ├── requirements-linting.txt └── test-case └── pyproject.toml /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/list-python-dependencies/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/list-python-dependencies/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/list-python-dependencies/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/list-python-dependencies/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/list-python-dependencies/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/list-python-dependencies/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/list-python-dependencies/HEAD/action.yml -------------------------------------------------------------------------------- /list_python_dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/list-python-dependencies/HEAD/list_python_dependencies.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/list-python-dependencies/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-linting.txt: -------------------------------------------------------------------------------- 1 | black 2 | isort 3 | pyupgrade 4 | pre-commit 5 | ruff 6 | -------------------------------------------------------------------------------- /test-case/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelcolvin/list-python-dependencies/HEAD/test-case/pyproject.toml --------------------------------------------------------------------------------