-
Notifications
You must be signed in to change notification settings - Fork 0
/
chart.dot
27 lines (22 loc) · 860 Bytes
/
chart.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
strict digraph {
package_name, specifier, marker, direct_url -> requirement -> distribution_metadata;
version -> specifier;
package_name, version, entry_points -> pep621 -> sdist -> wheel;
wheel_metadata, wheel_filename -> wheel;
wheel_tag -> wheel_filename;
package_name, version -> sdist_filename, wheel_filename;
marker -> wheel_tag -> wheel_metadata;
pep621 -> wheel_metadata;
distribution -> installation;
package_name, version -> distribution_metadata;
distribution_metadata, distribution_record, entry_points, wheel_metadata, direct_url -> "dist-info";
"dist-info", resource, module_path -> distribution -> wheel;
package_name -> module_path;
module_path -> entry_points;
sdist_manifest -> sdist;
sdist, sdist_filename -> sdist_archive;
wheel, sdist -> index;
entry_points -> script;
requirement -> locator -> index;
script;
}