Skip to content

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.11 or later.

The following dependencies are required:

Installation#

This library is not published to PyPI. You should install it directly from the GitHub repository. Using pyprojects.toml and locking to a Git reference (e.g. a tag) is recommended.

In pyprojects.toml#

[package]
dependencies = [
    "apfel @ git+https://github.com/Yixuan-Wang/apfel.git@v{VERSION}"
]

In pyprojects.toml with Poetry#

[tool.poetry.dependencies]
apfel = { git = "https://github.com/Yixuan-Wang/apfel.git", tag = "v{VERSION}" }

In requirements.txt#

apfel @ git+https://github.com/Yixuan-Wang/apfel.git@v{VERSION}

Direct Installation#

pip install git+https://github.com/Yixuan-Wang/apfel.git@v{VERSION}