Installation#
Warning: This library is mainly personal and still in a very early stage. We'll try to follow Semantic Versioning, but breaking changes should be expected. If you are interested in using this library, please make sure to lock the version.
Dependencies#
Currently, apfel
requires Python 3.10 or later.
Development environment require at least Python 3.11.
apfel
depends on the following packages:
Installation#
This library is not published to PyPI.
You should install it directly from the GitHub repository.
Using pyproject.toml
and locking to a Git reference (e.g. a tag) is recommended.
pip
#
This is not recommended as you cannot lock the version with pip
.
uv
#
uv add git+https://github.com/Yixuan-Wang/apfel.git --tag "v{VERSION}"
# or
uv add git+https://github.com/Yixuan-Wang/apfel.git --ref "{COMMIT_SHA}"
pdm
#
In pyproject.toml
#
In pyproject.toml
with Poetry#
[tool.poetry.dependencies]
apfel = { git = "https://github.com/Yixuan-Wang/apfel.git", tag = "v{VERSION}" }