Dependencies¶
Requirements files¶
Required and Optional dependencies are broken into lots and lots of requirements which are interlinked, e.g:
requirements/pins.shared.in
requirements/pip.in
requirements/pip-tools.in
requirements/dev.in
requirements/kit.in
requirements/mypy.in
requirements/manage.in
requirments/prod.shared.in
requirments/tox.in
docs/requirements.in
An author only apply constraints in the most dire circumstances. This
happens only within pins.shared.in
. Equivalent to a .lock file, so -c
is not allowed.
Although should be obvious, it’s not stated often enough; *.in
files
should only contains top level (direct package) dependencies.
requirements/pins.shared.in # included by others
requirements/pip.in # requirements/pip.lock
requirements/pip-tools.in # requirements/pip-tools.lock
requirements/dev.in # requirements/dev.lock
requirements/kit.in # requirements/kit.lock
requirements/mypy.in # requirements/mypy.lock
requirements/manage.in # requirements/manage.lock
requirments/prod.shared.in # requirments/prod.shared.lock Included by others
requirments/tox.in # requirments/tox.lock
docs/requirements.in # docs/requirements.lock
pyproject.toml file¶
Then link this to your pyproject.toml
file
[build-system]
requires = [
"setuptools>=70.0.0",
"wheel",
"build",
"setuptools_scm>=8",
"drain-swamp",
"drain-swamp-snippet",
]
build-backend = "setuptools.build_meta"
[project]
# When --package-name is not provided, gets it from here
name = "drain-swamp"
# static is not supported
dynamic = [
"optional-dependencies",
"dependencies",
"version",
]
# Used by swamp-drain. Grabs name from first entry. Then grabs the first name
authors = [
{name = "Dave Faulkmore", email = "faulkmore@protonmail.com"},
]
[tool.setuptools.dynamic]
# this is a snippet with snippet code **may_the_force_be_with_you_tshirt**
# From Dead Snow II -- best zombie movie ... ever!
# Specifying a snippet_co turns on support for multiple snippets / file
# @@@ editable may_the_force_be_with_you_tshirt
dependencies = { file = ["requirements/prod.shared.lnk"] }
optional-dependencies.pip = { file = ["requirements/pip.lnk"] }
optional-dependencies.pip_tools = { file = ["requirements/pip-tools.lnk"] }
optional-dependencies.ui = { file = ["requirements/ui.lnk"] }
optional-dependencies.test = { file = ["requirements/test.lnk"] }
optional-dependencies.dev = { file = ["requirements/dev.lnk"] }
optional-dependencies.manage = { file = ["requirements/manage.lnk"] }
optional-dependencies.docs = { file = ["docs/requirements.lnk"] }
# @@@ end
# replace [your package] is app name (underscores, not hyphens)
version = {attr = "[your package]._version.__version__"}
[tool.pipenv-unlock]
# Also look in these additional folders; not already implied
folders = [
"ci",
]
# pip-tools compatiable source file. Supports ``-c``, not ``-r``
required = { target = "prod", relative_path = "requirements/prod.shared.in" }
# pip-tools compatiable source file. Supports ``-c``, not ``-r``
# underscore: hyphen
optionals = [
{ target = "pip", relative_path = "requirements/pip.in" },
{ target = "pip_tools", relative_path = "requirements/pip-tools.in" },
{ target = "dev", relative_path = "requirements/dev.in" },
{ target = "manage", relative_path = "requirements/manage.in" },
{ target = "docs", relative_path = "docs/requirements.in" },
]
Each and every package author might not have a clue a dependency has a
vulnerability and if the end user chooses to use a downgrade
version
they should be able to do so.
Package authors create .in
file. The .lock
are produced by
pipenv-unlock lock
To unlock dependencies
pipenv-unlock unlock
constraints¶
-c [relative path to requirements .in file]
is a constraint file.
In constraints files, there is no support for:
-r
requirements files.lock files
dev.in
-c pins.shared.in
-c prod.shared.in
black
blackdoc
isort
flake8
flake8-pyproject
mypy
coverage
twine
validate-pyproject
prod.in
-c pins.shared.in
typing-extensions # backporting latest greatest typing features
strictyaml # yaml spec subset validate and parse
appdirs # Adhere to XDG spec
attrs
dev.in
# strictyaml --> python-dateutil --> prod.shared.lock
# python -m piptools compile does not see this postrelease. Instead chooses python-dateutil-2.8.2
python-dateutil==2.9.0.post0
typing-extensions # backporting latest greatest typing features
strictyaml # yaml spec subset validate and parse
appdirs # Adhere to XDG spec
attrs
black
blackdoc
isort
flake8
flake8-pyproject
mypy
coverage
twine
validate-pyproject
Meaning it’s KISS and not compiled. pip-tools
understands this.
These don’t understand: build, setuptools, and pip