Metadata-Version: 2.1
Name: pylic
Version: 0.0.6
Summary: Python license checker
Home-page: https://github.com/sandrochuber/pylic
Author: Sandro Huber
Author-email: sandrochuber@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# pylic - A Python license checker

Reads the pyproject.toml file and checks all installed licenses recursively.

## Example Configuration

```pyproject.toml
[tool.pylic]
allowed_licenses = [
    'MIT',
    'BSD'
]
whitelisted_packages = [
    "examplePyPackage"
]
```

## Development

Required tools:
- GitHub cli (https://github.com/cli/cli)


