Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fpgmaas/deptry-example
https://github.com/fpgmaas/deptry-example
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/fpgmaas/deptry-example
- Owner: fpgmaas
- Created: 2024-07-12T14:14:21.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-12T15:04:43.000Z (4 months ago)
- Last Synced: 2024-07-12T17:15:01.373Z (4 months ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.