Filter by tags:
Conda build can produce variants of the same package (e.g. different Python versions). This file controls the variables injected to meta.yaml. This is the main mechanism behind ‘conda-forge-pinning’.
WebsiteStatic file that provides all the information necessary to create an installable Python package. This alleviates the main problem of setup.py: its contents are dynamic and need to be executed to get retrieved.
WebsiteA file specifying conda packages and what channels to get them from. Users can also add pip packages here. It can be ingested by conda/mamba env and micromamba create. The tool will solve the environment and install the required packages.
WebsiteContains the definitions of an already solved conda environment. It can be generated by conda-lock, and consumed by conda install -f.
WebsiteSimilar to conda-lock, Poetry can freeze an existing virtual environment, writing the exact package definitions to this file.
WebsiteWhen Pipenv solves a Pipfile (finds the dependencies of the specified requirements in Pipfile), the resulting list is “frozen” to this lock file, including exact versions and hashes.
WebsiteA file containing a list of packages (and some command line options) to be installed by pip.
WebsiteConda channels store package metadata for each architecture (linux-64, win-64, etc) in these JSON files. Each package reports here which package they depend on, among other things.
WebsiteStripped down repodata.json which only contains the last build of each package, plus their dependencies, recursively. It simplifies the solver stage in some cases.
WebsiteA channel-wide metadata file that contains an index of all the conda packages present across all architectures in the channel.
Website