From 02662d95c08a78d5af4ca42e76cdbd4d6aaea77f Mon Sep 17 00:00:00 2001 From: Luis Ferraz Date: Tue, 14 Feb 2023 23:13:47 +0100 Subject: [PATCH] update readme --- .github/workflows/ci.yml | 2 +- README.md | 5 +++++ setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58e6317..2aef0b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: # run: python -m flake8 - name: Build the code and Install dependencies - run: pip install -e .[dev,components] + run: pip install -e .[dev,components,widgets] - name: Run tests run: python -m pytest -v \ No newline at end of file diff --git a/README.md b/README.md index 49f36e3..63421e7 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,11 @@ pip install limbus # limbus alone pip install limbus[components] # limbus + some predefined components ``` +Note that to use widgets you need to install their dependencies: +```bash +pip install limbus[widgets] +``` + ### from the repository: ```bash diff --git a/setup.py b/setup.py index baa6927..091fe0f 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages setup(name='limbus', - version='0.1.2', + version='0.1.3', description='High level interface to create Pytorch Graphs.', long_description=open('README.md').read(), long_description_content_type='text/markdown',