Metadata-Version: 2.4
Name: franklin-cli
Version: 0.25.139
Summary: Terminal client for Jupyter exercises
Author-email: Kasper Munch <kaspermunch@birc.au.dk>
Maintainer-email: Kasper Munch <kaspermunch@birc.au.dk>
Project-URL: Homepage, https://munch-group.org/franklin
Project-URL: Documentation, https://munch-group.org/franklin
Project-URL: Repository, https://github.com/munch-group/franklin.git
Project-URL: Issues, https://github.com/munch-group/franklin_cli/issues
Keywords: teaching,data,jupyter,docker,git
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Education
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.32.3
Requires-Dist: colorama>=0.4.6
Requires-Dist: readchar>=4.0.5
Requires-Dist: click
Requires-Dist: click-plugins
Requires-Dist: psutil
Requires-Dist: jupyter
Requires-Dist: packaging
Requires-Dist: pyyaml
Requires-Dist: pyperclip
Requires-Dist: selenium
Requires-Dist: webdriver-manager
Requires-Dist: rapidfuzz
Requires-Dist: pycryptodome
Dynamic: license-file


# Franklin


## Use conventional commits

The Conventional Commits specification is a lightweight convention on top of commit messages. It provides an easy set of rules for creating an explicit commit history; which makes it easier to write automated tools on top of. This convention dovetails with SemVer, by describing the features, fixes, and breaking changes made in commit messages.

The commit message should be structured as follows:

    <type>[optional scope][!]: <description>

    [optional body]

    [[BREAKING CHANGE:] optional footer(s)]

The commit contains the following structural elements, to communicate intent to the consumers of your library:

**fix:** a commit of the type fix patches a bug in your codebase (this correlates with PATCH in Semantic Versioning).

**feat:** a commit of the type feat introduces a new feature to the codebase (this correlates with MINOR in Semantic Versioning).

BREAKING CHANGE: a commit that has a footer **BREAKING CHANGE:**, or appends a ! after the type/scope, introduces a breaking API change (correlating with MAJOR in Semantic Versioning). A BREAKING CHANGE can be part of commits of any type.

Types other than fix: and feat: are allowed, for example @commitlint/config-conventional (based on the Angular convention) recommends **build:**, **chore:**, **ci:**, **docs:**, **style:**, **refactor:**, **perf:**, **test:**, and others.

Footers other than BREAKING CHANGE: <description> may be provided and follow a convention similar to git trailer format.

Additional types are not mandated by the Conventional Commits specification, and have no implicit effect in Semantic Versioning (unless they include a BREAKING CHANGE). A scope may be provided to a commit’s type, to provide additional contextual information and is contained within parenthesis, e.g., feat(parser): add ability to parse arrays.

# Releases

Running `release-tag.sh` creates and pushes a version tag maching the version in the pushed `pyproject.toml`. This triggers Github actions that first amends the remote `CHANGELOG.md` and then builds and publishes a conda package for that version.


# Developer Notes

union of dependencies for franklin, franklin-educator and franklin-admin are included in requirements.txt to make conda package building work

For conda packages, franklin-admin depends on franklin-educator, which depends on franklin. This is to make it possible to install like this or each user group:

students:

    conda install munch-group::franklin

educators:

    conda install munch-group::franklin-educator

admin:

    conda install munch-group::franklin-admin

