Python

FOSSA support for Python projects

FOSSA supports Python projects through setuptools, pip, poetry, and pipenv

ToolQuick Import (app.fossa.com)CLI (fossa-cli)
piprequirements.txt and setup.pyreq*.txt and setup.py
setuptools/distutilssetup.pyN/A
distributeN/AN/A
poetryN/Apyproject.toml and poetry.lock
pipenvN/APipfile.lock
condaN/Aenvironment.yml

Quick Import (app.fossa.com)

📘

Requires Standard Conventions

FOSSA currently assumes that Python codebases using Repository Scanning are following proper conventions where running setup.py or pip install -r <requirements.txt> is expected. If setup.py files are heavily customized or require non-standard versions of Python, FOSSA may fail to run and analyze them.

When Python code is imported, FOSSA will find and run any setup.py files and recursively traverse dependencies that are brought in via the install_requires parameter.

If there are any requirements.txt present, FOSSA will also resolve those entries and treat them as direct dependencies. Sub-dependencies of packages brought in from requirements.txt are ignored, as consistent with standard build behavior.

CLI (fossa-cli)

👍

Complex Builds Supported

For complex Python builds that rely on custom tooling, scripts or virtual env, CI/CD Scanning is the ideal integration path.

To get started, install the latest release of fossa-cli from our GitHub releases page:

curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install-latest.sh | bash

Once installed, run fossa analyze inside of your repo's root directory.

View extended documentation here.

Authentication

You can configure FOSSA to fetch dependencies from private PyPI registries published through tools like Artifactory or Sonatype Nexus.

In order for FOSSA to reach private feeds, go to your Python Language Settings under Account Settings > Languages > Python and add your login credentials.

1670

Pip Settings

Now you should be able to resolve private PyPI packages in FOSSA.

Package Data

FOSSA supports most standard ways Python packages can be included, ranging from packages on PyPI to packages stored in archives / VCS hosts.

When possible, FOSSA will seek source code formats over binary/archive formats like .egg and .whl. If an egg or wheel is downloaded, its contents are inspected for code auditing and dependency information.

  • dist-info directories are currently skipped.
  • Mercurial, Subversion, and Bazaar Version Control Systems are not supported.
  • Source code distributed with XZ compression is not supported.
  • Custom build scripts (i.e. fabric, make, etc.) are not supported.
  • C Extensions are not supported.

Supported VCS Formats:

VCSSupported
GitY
hgN
svbN
bzrN