git-tide 0.1.0__py2.py3-none-any.whl
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.
- git_tide-0.1.0.dist-info/METADATA +22 -0
- git_tide-0.1.0.dist-info/RECORD +8 -0
- git_tide-0.1.0.dist-info/WHEEL +4 -0
- git_tide-0.1.0.dist-info/entry_points.txt +3 -0
- tide/__init__.py +1 -0
- tide/__main__.py +4 -0
- tide/core.py +1037 -0
- tide/gitutils.py +340 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: git-tide
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: CLI for automated gitflow-style branching
|
|
5
|
+
Author: Chad Dombrova
|
|
6
|
+
Classifier: Programming Language :: Python :: 2
|
|
7
|
+
Classifier: Programming Language :: Python :: 2.7
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.4
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.5
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Provides-Extra: init
|
|
19
|
+
Requires-Dist: click (==8.1.7)
|
|
20
|
+
Requires-Dist: commitizen (==3.16.0)
|
|
21
|
+
Requires-Dist: python-gitlab (==4.8.0) ; extra == "init"
|
|
22
|
+
Requires-Dist: tomli (>=2.0.1,<3.0.0) ; python_version < "3.11"
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
tide/__init__.py,sha256=P976fB0eaD6inWZ19CcXgKWlqOQpp_anldhYxqpJqrw,55
|
|
2
|
+
tide/__main__.py,sha256=7pHsIZX9uNTyp1e1AkmZ1vXZxw_dYB1TbR1rYDJca6c,62
|
|
3
|
+
tide/core.py,sha256=xW3rm0Q8O8IDBUro6guQTS44WUZ9e4C-OFDVKxUc9-I,33229
|
|
4
|
+
tide/gitutils.py,sha256=7tRfuGRYPtDImFMUmGCIKd1BLxfpO40IMKLx-rnFhxs,9123
|
|
5
|
+
git_tide-0.1.0.dist-info/METADATA,sha256=YwY1wGxHQyWnE1U8jyX4Z2vQaQlU8SjEmZeWca92ox0,934
|
|
6
|
+
git_tide-0.1.0.dist-info/WHEEL,sha256=5cEDLREhpnNYpDlijc02-Q_4r7AkXMYW6R1JITTLLOQ,92
|
|
7
|
+
git_tide-0.1.0.dist-info/entry_points.txt,sha256=ljk_tepk5JjypAKcoroLmjhncJfSE_qg67bOz_vIugs,39
|
|
8
|
+
git_tide-0.1.0.dist-info/RECORD,,
|
tide/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from __future__ import absolute_import, print_function
|
tide/__main__.py
ADDED