Add networkx

This commit is contained in:
David Doblas Jiménez 2022-03-15 14:13:11 +01:00
parent b030ba8609
commit 41468cd911
2 changed files with 21 additions and 1 deletions

21
poetry.lock generated
View File

@ -198,6 +198,21 @@ category = "dev"
optional = false
python-versions = "*"
[[package]]
name = "networkx"
version = "2.7.1"
description = "Python package for creating and manipulating graphs and networks"
category = "main"
optional = false
python-versions = ">=3.8"
[package.extras]
default = ["numpy (>=1.19)", "scipy (>=1.8)", "matplotlib (>=3.4)", "pandas (>=1.3)"]
developer = ["black (==22.1)", "pyupgrade (>=2.31)", "pre-commit (>=2.17)", "mypy (>=0.931)"]
doc = ["sphinx (>=4.4)", "pydata-sphinx-theme (>=0.8)", "sphinx-gallery (>=0.10)", "numpydoc (>=1.2)", "pillow (>=9.0)", "nb2plots (>=0.6)", "texext (>=0.6.6)"]
extra = ["lxml (>=4.6)", "pygraphviz (>=1.9)", "pydot (>=1.4.2)"]
test = ["pytest (>=7.0)", "pytest-cov (>=3.0)", "codecov (>=2.1)"]
[[package]]
name = "nodeenv"
version = "1.6.0"
@ -435,7 +450,7 @@ python-versions = "*"
[metadata]
lock-version = "1.1"
python-versions = ">=3.9,<3.11"
content-hash = "11369ebdff1678e0387f5a11d64f867ac0b8cf8a77716a2091ae76f43fa65929"
content-hash = "60ab54357a1868343028f7e5ac1dc762f835d650b13dec4b3b5d60f6650f40c8"
[metadata.files]
atomicwrites = [
@ -566,6 +581,10 @@ mypy-extensions = [
{file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"},
{file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"},
]
networkx = [
{file = "networkx-2.7.1-py3-none-any.whl", hash = "sha256:011e85d277c89681e8fa661cf5ff0743443445049b0b68789ad55ef09340c6e0"},
{file = "networkx-2.7.1.tar.gz", hash = "sha256:d1194ba753e5eed07cdecd1d23c5cd7a3c772099bd8dbd2fea366788cf4de7ba"},
]
nodeenv = [
{file = "nodeenv-1.6.0-py2.py3-none-any.whl", hash = "sha256:621e6b7076565ddcacd2db0294c0381e01fd28945ab36bcf00f41c5daf63bef7"},
{file = "nodeenv-1.6.0.tar.gz", hash = "sha256:3ef13ff90291ba2a4a7a4ff9a979b63ffdd00a464dbe04acf0ea6471517a4c2b"},

View File

@ -9,6 +9,7 @@ python = ">=3.9,<3.11"
numpy = "^1.21.4"
sympy = "^1.9"
scipy = "^1.8.0"
networkx = "^2.7.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"