Metadata-Version: 2.1
Name: framework-detector
Version: 0.1.4
Summary: Detects which framework is in use in a project
Home-page: https://github.com/pbexe/framework-detector
Author: Miles Budden
Author-email: git@miles.so
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Project-URL: Repository, https://github.com/pbexe/framework-detector
Description-Content-Type: text/markdown

# Framework detector

Detects which framework is in use for a project and suggests a dockerfile.

Strongly influenced by https://github.com/netlify/framework-info

## Installation

```sh
pip install framework-detector
```

## Usage

```python
from framework_detector import detector, get_dockerfile
from pathlib import Path

framework = detector.detect(Path.cwd())

dockerfile = get_dockerfile(framework["dockerfile"])
```
