git-tide 0.1.0__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.
- git_tide-0.1.0/PKG-INFO +22 -0
- git_tide-0.1.0/pyproject.toml +52 -0
- git_tide-0.1.0/src/tide/__init__.py +1 -0
- git_tide-0.1.0/src/tide/__main__.py +4 -0
- git_tide-0.1.0/src/tide/core.py +1037 -0
- git_tide-0.1.0/src/tide/gitutils.py +340 -0
git_tide-0.1.0/PKG-INFO
ADDED
|
@@ -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,52 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "git-tide"
|
|
3
|
+
|
|
4
|
+
[tool.poetry]
|
|
5
|
+
name = "git-tide"
|
|
6
|
+
packages = [
|
|
7
|
+
{ include = "tide", from = "src" },
|
|
8
|
+
]
|
|
9
|
+
version = "0.1.0"
|
|
10
|
+
description = "CLI for automated gitflow-style branching"
|
|
11
|
+
authors = ["Chad Dombrova", "Matt Collie"]
|
|
12
|
+
|
|
13
|
+
[tool.poetry.dependencies]
|
|
14
|
+
commitizen = "3.16.0"
|
|
15
|
+
tomli = { version = "^2.0.1", python = "<3.11" }
|
|
16
|
+
click = "8.1.7"
|
|
17
|
+
python-gitlab = { version = "4.8.0", optional = true }
|
|
18
|
+
|
|
19
|
+
[tool.poetry.extras]
|
|
20
|
+
init = ["python-gitlab"]
|
|
21
|
+
|
|
22
|
+
[tool.poetry.scripts]
|
|
23
|
+
tide = "tide.core:main"
|
|
24
|
+
|
|
25
|
+
[build-system]
|
|
26
|
+
requires = ["poetry-core"]
|
|
27
|
+
build-backend = "poetry.core.masonry.api"
|
|
28
|
+
|
|
29
|
+
[tool.mypy]
|
|
30
|
+
exclude = '''^(venv|\.ruff_cache|\.nox|\.pytest_cache|\.mypy_cache)/'''
|
|
31
|
+
files = ["noxfile.py", "src"]
|
|
32
|
+
ignore_missing_imports = true
|
|
33
|
+
show_error_codes = true
|
|
34
|
+
disallow_untyped_defs = true
|
|
35
|
+
|
|
36
|
+
[tool.pytest.ini_options]
|
|
37
|
+
markers = [
|
|
38
|
+
"smoke: mark a test as a smoke test",
|
|
39
|
+
"unit: mark a test as a unit test"
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
[tool.tide]
|
|
43
|
+
branches.beta = "develop"
|
|
44
|
+
branches.rc = "staging"
|
|
45
|
+
branches.stable = "master"
|
|
46
|
+
|
|
47
|
+
[tool.commitizen]
|
|
48
|
+
name = "cz_conventional_commits"
|
|
49
|
+
tag_format = "$version"
|
|
50
|
+
version_scheme = "pep440"
|
|
51
|
+
version_provider = "scm"
|
|
52
|
+
major_version_zero = false
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from __future__ import absolute_import, print_function
|