Adding pipenv as a dependency to the pipenv environment itself is admittedly counter-intuitive, however this gives the advantage of being able to install all dependencies (including dev-dependencies) via the common and generally available `pip` package manager interface. The generation of requirements.txt and requirements-dev.txt is abstracted through the Makefile.
18 lines
306 B
TOML
18 lines
306 B
TOML
[[source]]
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
name = "pypi"
|
|
|
|
[packages]
|
|
sphinx = "*"
|
|
sphinx-theme-ref = {file = ".", editable = true}
|
|
|
|
[dev-packages]
|
|
tox = "~=4.24.2"
|
|
mypy = "~=1.15.0"
|
|
autopep8 = "~=2.3.2"
|
|
setuptools-scm = "~=8.2.0"
|
|
pipenv = "~=2024.4.1"
|
|
|
|
[requires]
|
|
python_version = "3.11"
|