better-git-of-theseus 0.5.1__tar.gz → 0.5.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/PKG-INFO +1 -1
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/better_git_of_theseus.egg-info/PKG-INFO +1 -1
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/git_of_theseus/plotly_plots.py +6 -6
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/setup.py +1 -1
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/LICENSE +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/README.md +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/better_git_of_theseus.egg-info/SOURCES.txt +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/better_git_of_theseus.egg-info/dependency_links.txt +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/better_git_of_theseus.egg-info/entry_points.txt +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/better_git_of_theseus.egg-info/requires.txt +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/better_git_of_theseus.egg-info/top_level.txt +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/git_of_theseus/__init__.py +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/git_of_theseus/analyze.py +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/git_of_theseus/app.py +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/git_of_theseus/cmd.py +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/git_of_theseus/line_plot.py +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/git_of_theseus/stack_plot.py +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/git_of_theseus/survival_plot.py +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/git_of_theseus/utils.py +0 -0
- {better_git_of_theseus-0.5.1 → better_git_of_theseus-0.5.2}/setup.cfg +0 -0
|
@@ -68,8 +68,8 @@ def plotly_stack_plot(data, max_n=20, normalize=False, title=None):
|
|
|
68
68
|
),
|
|
69
69
|
xaxis=dict(title="Date", gridcolor='rgba(128,128,128,0.2)'),
|
|
70
70
|
hovermode="x unified",
|
|
71
|
-
margin=dict(l=20, r=20, t=60, b=
|
|
72
|
-
legend=dict(orientation="h", yanchor="top", y=-0.
|
|
71
|
+
margin=dict(l=20, r=20, t=60, b=120),
|
|
72
|
+
legend=dict(orientation="h", yanchor="top", y=-0.25, xanchor="center", x=0.5),
|
|
73
73
|
plot_bgcolor='rgba(0,0,0,0)',
|
|
74
74
|
paper_bgcolor='rgba(0,0,0,0)'
|
|
75
75
|
)
|
|
@@ -97,8 +97,8 @@ def plotly_line_plot(data, max_n=20, normalize=False, title=None):
|
|
|
97
97
|
),
|
|
98
98
|
xaxis=dict(title="Date", gridcolor='rgba(128,128,128,0.2)'),
|
|
99
99
|
hovermode="x unified",
|
|
100
|
-
margin=dict(l=20, r=20, t=60, b=
|
|
101
|
-
legend=dict(orientation="h", yanchor="top", y=-0.
|
|
100
|
+
margin=dict(l=20, r=20, t=60, b=120),
|
|
101
|
+
legend=dict(orientation="h", yanchor="top", y=-0.25, xanchor="center", x=0.5),
|
|
102
102
|
plot_bgcolor='rgba(0,0,0,0)',
|
|
103
103
|
paper_bgcolor='rgba(0,0,0,0)'
|
|
104
104
|
)
|
|
@@ -169,8 +169,8 @@ def plotly_survival_plot(commit_history, exp_fit=False, years=5, title=None):
|
|
|
169
169
|
yaxis=dict(title="Lines still present (%)", range=[0, 105], gridcolor='rgba(128,128,128,0.2)'),
|
|
170
170
|
xaxis=dict(title="Years", range=[0, years], gridcolor='rgba(128,128,128,0.2)'),
|
|
171
171
|
hovermode="x unified",
|
|
172
|
-
margin=dict(l=20, r=20, t=50, b=
|
|
173
|
-
legend=dict(orientation="h", yanchor="top", y=-0.
|
|
172
|
+
margin=dict(l=20, r=20, t=50, b=120),
|
|
173
|
+
legend=dict(orientation="h", yanchor="top", y=-0.25, xanchor="center", x=0.5),
|
|
174
174
|
plot_bgcolor='rgba(0,0,0,0)',
|
|
175
175
|
paper_bgcolor='rgba(0,0,0,0)'
|
|
176
176
|
)
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="better-git-of-theseus",
|
|
8
|
-
version="0.5.
|
|
8
|
+
version="0.5.2",
|
|
9
9
|
description="Plot stats on Git repositories with interactive Plotly charts",
|
|
10
10
|
long_description=long_description,
|
|
11
11
|
long_description_content_type="text/markdown",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|