Skip to content

Commit

Permalink
Merge pull request #68 from GalenWong/jsonpickle-dependency
Browse files Browse the repository at this point in the history
Adding jsonpickle to setup.py
  • Loading branch information
Giancarlo Perrone committed Aug 3, 2020
2 parents 5d1afd2 + c42dad7 commit faa4b58
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ python setup.py install

[ipython](https://ipython.org/ipython-doc/2/install/install.html)

[jsonpickle](https://jsonpickle.github.io/)

## Quick Start
The most basic use case of a pyvis instance is to create a Network object and invoke methods:

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ Jinja2>=2.10
networkx>=1.11
ipython>=5.3.0
pandas>=0.23.4
jsonpickle
jsonpickle>=1.4.1
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
install_requires=[
"jinja2 >= 2.9.6",
"networkx >= 1.11",
"ipython >= 5.3.0"
"ipython >= 5.3.0",
"jsonpickle >= 1.4.1"
]
)

0 comments on commit faa4b58

Please sign in to comment.