comparison env/lib/python3.7/site-packages/networkx-2.4.dist-info/METADATA @ 5:9b1c78e6ba9c draft default tip

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