Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix deps for demo #3

Merged
merged 1 commit into from
Jul 10, 2024
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
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,17 @@

## Install

> TBD
> **This package is not yet released.**
>
> ```bash
> pip install ipyprofiler
> ```
>
> To also install optional python-specific integration:
>
> ```bash
> pip install ipyprofiler[pyinstrument]
> ```

## Screenshots

Expand Down
3 changes: 1 addition & 2 deletions examples/files/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
pyinstrument
ipywidgets
ipyprofiler
ipyprofiler[pyinstrument]
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ name = "ipyprofiler"
description = "Jupyter Widgets for visualizing profiler data."
version = "0.1.0"
requires-python = ">=3.9"
dependencies = ["traitlets >=5.1", "ipywidgets >=7,<9"]
dependencies = [
"ipywidgets >=7,<9",
"jinja2 >=3.0.3",
"traitlets >=5.1",
]
optional-dependencies.pyinstrument = ["pyinstrument >=4.6.1"]
authors = [{name = "ipyprofiler contributors"}]
readme = "README.md"
classifiers = [
Expand Down