Find undeclared 3rd-party dependencies in your Python project.
Project description
FawltyDeps
A dependency checker for Python.
Find undeclared and/or unused 3rd-party dependencies in your Python project.
Key Concepts
- undeclared dependency: a package that's used (in particular,
import
ed) by a project and which lacks a corresponding declaration to ensure that it's available. For example, youimport numpy
, but you've forgotten to includenumpy
in yourrequirements.txt
. Pragmatically, this means the project is prone to runtime errors. - unused dependency: a package that's declared as necessary for a project but which is never used by project code.
For example, you have
numpy
listed in yourrequirements.txt
, but you never actuallyimport numpy
. Pragmatically, this means that project installation may consume more space than needed and will be more likely to break with future software releases; in short, these are costs paid for no benefit.
Installation
TODO: Fill when released in PyPI. See the release ticket.
Usage
To check the project in the current directory run:
fawltydeps
This will find imports in all the Python code under the current directory, extract dependencies declared by your project, and then report undeclared and unused dependencies.
Available Actions
FawltyDeps provides the following options for controlling what actions to perform. Only one of these can be used at a time:
--check
: Report both undeclared and unused dependencies--check-undeclared
: Report only undeclared dependencies--check-unused
: Report only unused dependencies--list-imports
: List imports extracted from code and exit--list-deps
: List declared dependencies and exit
When none of these are specified, the default action is --check
.
Where to find Python code
The --code
option tells FawltyDeps where to find the Python code to parse for
import
statements. You can pass either of these:
- a single file: Either a Python file (
*.py
) or a Jupyter Notebook (*.ipynb
) - a directory: FawltyDeps will find all Python files and Jupyter notebooks under this directory.
-
: Passing a single dash (--code=-
) tells FawltyDeps to read Python code from stdin.
If no --code
option is passed, FawltyDeps will find all Python code under the
current directory, i.e. same as --code=.
Where to find declared dependencies
The --deps
option tells FawltyDeps where to look for your project's declared
dependencies. A number of file formats are supported:
requirements.txt
pyproject.toml
(following PEP 621 or Poetry conventions)setup.py
(only limited support for simple files with a singlesetup()
call and literals passed directly to theinstall_requires
andextras_require
arguments)
The --deps
option accepts either a directory, in which case FawltyDeps will go
looking for the above files under that directory. or a file, in case you want to
be explicit about where to find the declared dependencies.
If no --deps
option is passed, FawltyDeps will look for the above files under
the current directory, i.e. same as --deps=.
More help
Run fawltydeps --help
to get the full list of available options.
Documentation
This project began with an exploration and design phase, yielding this design document, which lays out the main objective for this project and compares various strategies considered
In the code design section of documentation we lay out rules which we adopt to guide code architecture decisions and maintain code quality as the project evolves.
Development
Poetry
The project uses Poetry. Install Poetry, and then run:
poetry install --with=dev
to create a virtualenv with all (development) dependencies installed.
From there you can run:
poetry shell
to jump into a development shell with this virtualenv activated. Here you will
have all the dependencies declared in our pyproject.toml
installed. (Without this shell activated you will have to prefix the more
specific commands below with poetry run ...
).
Nox
We use Nox for test/workflow automation:
nox --list # List sessions
nox # Run all available sessions
nox -R # Run all available sessions, while reusing virtualenvs (i.e. faster)
nox -s tests # Run unit tests on supported Python versions (that are available)
nox -s tests-3.7 # Run unit tests on Python v3.7 (assuming it is available locally)
nox -s integration_tests-3.11 # Run integration tests on Python 3.11
nox -s lint # Run linters (mypy + pylint) on all supported Python versions
nox -s format # Check formatting (isort + black)
nox -s reformat # Fix formatting (isort + black)
If you want to run a command individually, the corresponding session is defined inside
noxfile.py
. For example, these
commands will work:
pytest # Run unit tests
pytest -m integration # Run integration tests
mypy # Run static type checking
pylint fawltydeps tests # Run Pylint
isort fawltydeps tests # Fix sorting of import statements
black . # Fix code formatting
Shortcut: Nix
We have a shell.nix
which provides Poetry in addition to all of
our supported Python versions. If you have Nix available
on your machine, then running:
nix-shell
will put you inside a shell where the Poetry virtualenv (with all development dependencies) is activated, and all supported Python versions are available. This also provides isolation from whatever Python version(s) and packages are installed on your system.
From there, a simple nox
will run all tests + linters against all supported
Python versions, as well as checking/formatting the code.
Integration tests
In addition to comprehensive unit tests under tests/
, we also verify
FawltyDeps' behavior with integration tests which (among other things) include
testing with real-world projects. To that end, we have a framework in
tests/test_real_projects.py
for downloading
and unpacking tarballs of 3rd-party projects, and then running fawltydeps on them,
while verifying their output. These projects, along with the expected FawltyDeps
outputs, are defined in TOML files under
tests/real_projects
.
If you find a project where FawltyDeps is not doing a good job, we would appreciate
if you would add that project under tests/real_projects
.
To see how these tests work, look at the existing files in that directory.
Development
To give minimal working examples of supported projects, we add to the real-world projects some simplified versions in tests/sample_projects
.
For bug reports, when a user reports that fawltydeps
not working on their project, we adopt the following process:
- The project is added to
real_projects
. - We isolate the problems/issues/features and define/express them succinctly as a sample project under
sample_projects
. - We examine the issue more closely and update core logic, adding/altering unit tests along the way.
The resulting updates are introduced to fawltydeps
and reflected in our expectations, first in the TOML for the sample project(s) and then finally in the real_projects
TOML.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fawltydeps-0.0.1.tar.gz
.
File metadata
- Download URL: fawltydeps-0.0.1.tar.gz
- Upload date:
- Size: 18.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.10.6 Linux/5.15.0-58-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 209e23c36f4d1e643caae9d60fc3a339e3156dc0ad80e8ecf7006f9138af9244 |
|
MD5 | 8deb64a6cf95874c1c910e970ed8de80 |
|
BLAKE2b-256 | 5def58f78d7c3419078093d08965df774bf86197c6c0bfb921ead7a0538d5aba |
File details
Details for the file fawltydeps-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: fawltydeps-0.0.1-py3-none-any.whl
- Upload date:
- Size: 16.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.10.6 Linux/5.15.0-58-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac356008b60ad84114f380aee666d452123b4d4289268aadd694811ba984d4c4 |
|
MD5 | 3bff5fbe6571c51612f499537a7bc891 |
|
BLAKE2b-256 | 988940532f21d49f030ec654f190eb31999895b3a9ed77150bed2907b8f02cc9 |