Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ORiGAMi circumvents this by directly operating on JSON data. Once a model is tra

## Installation

ORiGAMi requires Python version 3.10 or higher. We recommend using a virtual environment, such as
ORiGAMi requires Python version 3.10 or 3.11. We recommend using a virtual environment, such as
Python's native [`venv`](https://docs.python.org/3/library/venv.html).

To install ORiGAMi with `pip`, use
Expand All @@ -48,7 +48,7 @@ ORiGAMi comes with a command line interface (CLI) and a Python SDK.

The CLI allows to train a model and make predictions from a trained model. After installation, run `origami` from your shell to see an overview of available commands.

Help for specific commands is available with `origami <command> --help`, where `<command>` is currently one of `train` or `predict`.
Help for specific commands is available with `origami <command> --help`, where `<command>` is currently one of `train` or `predict`. Note that the first time you run the `origami` CLI tool can take longer.

Detailed documentation for the CLI and available options can be found in [`CLI.md`](CLI.md).

Expand Down
7 changes: 0 additions & 7 deletions origami/cli/generate.py

This file was deleted.

2 changes: 0 additions & 2 deletions origami/cli/main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import click

from origami.cli.generate import generate
from origami.cli.predict import predict
from origami.cli.train import train

Expand All @@ -13,5 +12,4 @@ def main():


main.add_command(train)
main.add_command(generate)
main.add_command(predict)
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = origami
version = 0.1.3
version = 0.1.4

[options]
packages = find: