comparison env/lib/python3.9/site-packages/networkx-2.5.dist-info/METADATA @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
1 Metadata-Version: 2.1
2 Name: networkx
3 Version: 2.5
4 Summary: Python package for creating and manipulating graphs and networks
5 Home-page: http://networkx.github.io/
6 Author: Aric Hagberg
7 Author-email: hagberg@lanl.gov
8 Maintainer: NetworkX Developers
9 Maintainer-email: networkx-discuss@googlegroups.com
10 License: UNKNOWN
11 Project-URL: Bug Tracker, https://github.com/networkx/networkx/issues
12 Project-URL: Documentation, https://networkx.github.io/documentation/stable/
13 Project-URL: Source Code, https://github.com/networkx/networkx
14 Keywords: Networks,Graph Theory,Mathematics,network,graph,discrete mathematics,math
15 Platform: Linux
16 Platform: Mac OSX
17 Platform: Windows
18 Platform: Unix
19 Classifier: Development Status :: 5 - Production/Stable
20 Classifier: Intended Audience :: Developers
21 Classifier: Intended Audience :: Science/Research
22 Classifier: License :: OSI Approved :: BSD License
23 Classifier: Operating System :: OS Independent
24 Classifier: Programming Language :: Python :: 3
25 Classifier: Programming Language :: Python :: 3.6
26 Classifier: Programming Language :: Python :: 3.7
27 Classifier: Programming Language :: Python :: 3.8
28 Classifier: Programming Language :: Python :: 3 :: Only
29 Classifier: Topic :: Software Development :: Libraries :: Python Modules
30 Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
31 Classifier: Topic :: Scientific/Engineering :: Information Analysis
32 Classifier: Topic :: Scientific/Engineering :: Mathematics
33 Classifier: Topic :: Scientific/Engineering :: Physics
34 Requires-Python: >=3.6
35 Requires-Dist: decorator (>=4.3.0)
36 Provides-Extra: all
37 Requires-Dist: numpy ; extra == 'all'
38 Requires-Dist: scipy ; extra == 'all'
39 Requires-Dist: pandas ; extra == 'all'
40 Requires-Dist: matplotlib ; extra == 'all'
41 Requires-Dist: pygraphviz ; extra == 'all'
42 Requires-Dist: pydot ; extra == 'all'
43 Requires-Dist: pyyaml ; extra == 'all'
44 Requires-Dist: lxml ; extra == 'all'
45 Requires-Dist: pytest ; extra == 'all'
46 Provides-Extra: gdal
47 Requires-Dist: gdal ; extra == 'gdal'
48 Provides-Extra: lxml
49 Requires-Dist: lxml ; extra == 'lxml'
50 Provides-Extra: matplotlib
51 Requires-Dist: matplotlib ; extra == 'matplotlib'
52 Provides-Extra: numpy
53 Requires-Dist: numpy ; extra == 'numpy'
54 Provides-Extra: pandas
55 Requires-Dist: pandas ; extra == 'pandas'
56 Provides-Extra: pydot
57 Requires-Dist: pydot ; extra == 'pydot'
58 Provides-Extra: pygraphviz
59 Requires-Dist: pygraphviz ; extra == 'pygraphviz'
60 Provides-Extra: pytest
61 Requires-Dist: pytest ; extra == 'pytest'
62 Provides-Extra: pyyaml
63 Requires-Dist: pyyaml ; extra == 'pyyaml'
64 Provides-Extra: scipy
65 Requires-Dist: scipy ; extra == 'scipy'
66
67 NetworkX
68 ========
69
70 .. image:: https://img.shields.io/pypi/v/networkx.svg
71 :target: https://pypi.org/project/networkx/
72
73 .. image:: https://img.shields.io/pypi/pyversions/networkx.svg
74 :target: https://pypi.org/project/networkx/
75
76 .. image:: https://travis-ci.org/networkx/networkx.svg?branch=master
77 :target: https://travis-ci.org/networkx/networkx
78
79 .. image:: https://ci.appveyor.com/api/projects/status/github/networkx/networkx?branch=master&svg=true
80 :target: https://ci.appveyor.com/project/dschult/networkx-pqott
81
82 .. image:: https://codecov.io/gh/networkx/networkx/branch/master/graph/badge.svg
83 :target: https://codecov.io/gh/networkx/networkx
84
85 NetworkX is a Python package for the creation, manipulation,
86 and study of the structure, dynamics, and functions
87 of complex networks.
88
89 - **Website (including documentation):** https://networkx.github.io
90 - **Mailing list:** https://groups.google.com/forum/#!forum/networkx-discuss
91 - **Source:** https://github.com/networkx/networkx
92 - **Bug reports:** https://github.com/networkx/networkx/issues
93
94 Simple example
95 --------------
96
97 Find the shortest path between two nodes in an undirected graph:
98
99 .. code:: python
100
101 >>> import networkx as nx
102 >>> G = nx.Graph()
103 >>> G.add_edge('A', 'B', weight=4)
104 >>> G.add_edge('B', 'D', weight=2)
105 >>> G.add_edge('A', 'C', weight=3)
106 >>> G.add_edge('C', 'D', weight=4)
107 >>> nx.shortest_path(G, 'A', 'D', weight='weight')
108 ['A', 'B', 'D']
109
110 Install
111 -------
112
113 Install the latest version of NetworkX::
114
115 $ pip install networkx
116
117 Install with all optional dependencies::
118
119 $ pip install networkx[all]
120
121 For additional details, please see `INSTALL.rst`.
122
123 Bugs
124 ----
125
126 Please report any bugs that you find `here <https://github.com/networkx/networkx/issues>`_.
127 Or, even better, fork the repository on `GitHub <https://github.com/networkx/networkx>`_
128 and create a pull request (PR). We welcome all changes, big or small, and we
129 will help you make the PR if you are new to `git` (just ask on the issue and/or
130 see `CONTRIBUTING.rst`).
131
132 License
133 -------
134
135 Released under the 3-Clause BSD license (see `LICENSE.txt`)::
136
137 Copyright (C) 2004-2020 NetworkX Developers
138 Aric Hagberg <hagberg@lanl.gov>
139 Dan Schult <dschult@colgate.edu>
140 Pieter Swart <swart@lanl.gov>
141
142