A temporary repository to organize various dependent repositories/packages for testing and development of the staging/rewrite branch.
Originally lived at glotaran/pyglotaran-staging but was migrated here to make clear it is not an official repo.
This is a collection of packages used in the development and testing of a (partial) rewrite of pyglotaran.
Create a new conda environment for this collection of packages
conda create --name pygta_staging python=3.10
conda activate pygta_staging
Now assuming we're in the right pygta_staging environment, lets use pip to install the packages from this repository
pip install -r requirements.txt # installs pyglotaran and pyglotaran-extras from sources
Open a notebook from the GFP-for-rewrite
folder in this repository.
When running a command in the notebook, VS Code will ask you to select a kernel.
Select the newly created pygta_staging
kernel environment.
Execute the VS Code command (CTRL+SHIFT+P) Python: Select Interpreter
and select the pygta_staging
environment.
Install the ruff extension for hints about how to improve your code.
A .ruff.toml
file is included in this repository to configure ruff for this project.