Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fpgmaas/deptry-example


https://github.com/fpgmaas/deptry-example

Last synced: 15 days ago
JSON representation

Awesome Lists containing this project

README

        

# deptry-example

```
python -m venv venv
. ./venv/bin/activate
pip install -e .
pip install deptry
deptry -v .
```

Will result in:

```
Scanning 1 file...

pyproject.toml: DEP002 'asyncio' defined as a dependency but not used in the codebase
pyproject.toml: DEP002 'pathlib' defined as a dependency but not used in the codebase
Found 2 dependency issues.

For more information, see the documentation: https://deptry.com/
```

This is incorrect; asyncio is used in the codebase, but it's a standard library.