├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .pre-commit-hooks.yaml ├── LICENSE ├── README.rst ├── liccheck.ini ├── liccheck ├── __init__.py ├── __main__.py ├── command_line.py └── requirements.py ├── renovate.json ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── tests ├── __init__.py ├── conftest.py ├── test_check_package.py ├── test_cli.py ├── test_get_packages_info.py ├── test_read_strategy.py └── test_write_packages.py └── tox.ini /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/README.rst -------------------------------------------------------------------------------- /liccheck.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/liccheck.ini -------------------------------------------------------------------------------- /liccheck/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /liccheck/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/liccheck/__main__.py -------------------------------------------------------------------------------- /liccheck/command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/liccheck/command_line.py -------------------------------------------------------------------------------- /liccheck/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/liccheck/requirements.py -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/renovate.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_check_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/tests/test_check_package.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_get_packages_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/tests/test_get_packages_info.py -------------------------------------------------------------------------------- /tests/test_read_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/tests/test_read_strategy.py -------------------------------------------------------------------------------- /tests/test_write_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/tests/test_write_packages.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhatim/python-license-check/HEAD/tox.ini --------------------------------------------------------------------------------