commitflow 1.0.0__tar.gz → 1.0.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.
Files changed (27) hide show
  1. {commitflow-1.0.0 → commitflow-1.0.2}/PKG-INFO +19 -4
  2. {commitflow-1.0.0 → commitflow-1.0.2}/README.md +2 -3
  3. {commitflow-1.0.0 → commitflow-1.0.2}/commitflow.egg-info/PKG-INFO +19 -4
  4. {commitflow-1.0.0 → commitflow-1.0.2}/setup.py +21 -1
  5. {commitflow-1.0.0 → commitflow-1.0.2}/LICENSE +0 -0
  6. {commitflow-1.0.0 → commitflow-1.0.2}/commitflow.egg-info/SOURCES.txt +0 -0
  7. {commitflow-1.0.0 → commitflow-1.0.2}/commitflow.egg-info/dependency_links.txt +0 -0
  8. {commitflow-1.0.0 → commitflow-1.0.2}/commitflow.egg-info/entry_points.txt +0 -0
  9. {commitflow-1.0.0 → commitflow-1.0.2}/commitflow.egg-info/requires.txt +0 -0
  10. {commitflow-1.0.0 → commitflow-1.0.2}/commitflow.egg-info/top_level.txt +0 -0
  11. {commitflow-1.0.0 → commitflow-1.0.2}/daily_git_assistant/__init__.py +0 -0
  12. {commitflow-1.0.0 → commitflow-1.0.2}/daily_git_assistant/config.py +0 -0
  13. {commitflow-1.0.0 → commitflow-1.0.2}/daily_git_assistant/git_utils.py +0 -0
  14. {commitflow-1.0.0 → commitflow-1.0.2}/daily_git_assistant/logger.py +0 -0
  15. {commitflow-1.0.0 → commitflow-1.0.2}/daily_git_assistant/main.py +0 -0
  16. {commitflow-1.0.0 → commitflow-1.0.2}/daily_git_assistant/modes/__init__.py +0 -0
  17. {commitflow-1.0.0 → commitflow-1.0.2}/daily_git_assistant/modes/auto.py +0 -0
  18. {commitflow-1.0.0 → commitflow-1.0.2}/daily_git_assistant/modes/interactive.py +0 -0
  19. {commitflow-1.0.0 → commitflow-1.0.2}/daily_git_assistant/modes/quick.py +0 -0
  20. {commitflow-1.0.0 → commitflow-1.0.2}/daily_git_assistant/modes/setup.py +0 -0
  21. {commitflow-1.0.0 → commitflow-1.0.2}/daily_git_assistant/repo_scanner.py +0 -0
  22. {commitflow-1.0.0 → commitflow-1.0.2}/daily_git_assistant/scheduler.py +0 -0
  23. {commitflow-1.0.0 → commitflow-1.0.2}/daily_git_assistant/ui.py +0 -0
  24. {commitflow-1.0.0 → commitflow-1.0.2}/setup.cfg +0 -0
  25. {commitflow-1.0.0 → commitflow-1.0.2}/tests/test_commit_flow.py +0 -0
  26. {commitflow-1.0.0 → commitflow-1.0.2}/tests/test_config.py +0 -0
  27. {commitflow-1.0.0 → commitflow-1.0.2}/tests/test_git_utils.py +0 -0
@@ -1,16 +1,32 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: commitflow
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: CLI tool for maintaining consistent Git commits automatically
5
+ Home-page: https://github.com/abhinav9444/commitflow
5
6
  Author: Abhinav Kumar Singh
7
+ Author-email: abhinavksinghofc@gmail.com
8
+ License: MIT
9
+ Project-URL: Source, https://github.com/abhinav9444/commitflow
10
+ Project-URL: Issues, https://github.com/abhinav9444/commitflow/issues
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Environment :: Console
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Topic :: Software Development :: Version Control :: Git
6
17
  Requires-Python: >=3.8
7
18
  Description-Content-Type: text/markdown
8
19
  License-File: LICENSE
9
20
  Requires-Dist: colorama
10
21
  Dynamic: author
22
+ Dynamic: author-email
23
+ Dynamic: classifier
11
24
  Dynamic: description
12
25
  Dynamic: description-content-type
26
+ Dynamic: home-page
27
+ Dynamic: license
13
28
  Dynamic: license-file
29
+ Dynamic: project-url
14
30
  Dynamic: requires-dist
15
31
  Dynamic: requires-python
16
32
  Dynamic: summary
@@ -18,12 +34,11 @@ Dynamic: summary
18
34
  # CommitFlow
19
35
 
20
36
  ![Python](https://img.shields.io/badge/python-3.9%2B-blue)
21
- ![License](https://img.shields.io/github/license/abhinav9444/commitflow)
37
+ ![License](https://img.shields.io/badge/license-MIT-blue.svg)
38
+ ![Build](https://github.com/abhinav9444/commitflow/actions/workflows/tests.yml/badge.svg)
22
39
  ![Tests](https://img.shields.io/github/actions/workflow/status/abhinav9444/commitflow/tests.yml)
23
- <!--
24
40
  ![PyPI](https://img.shields.io/pypi/v/commitflow)
25
41
 
26
- -->
27
42
  CommitFlow is a lightweight command-line tool that helps developers maintain consistent Git commits automatically without interrupting their workflow .
28
43
  It provides a simple interface to commit progress, automate daily commits and keep your GitHub contribution graph active while you focus on actual development.
29
44
 
@@ -1,12 +1,11 @@
1
1
  # CommitFlow
2
2
 
3
3
  ![Python](https://img.shields.io/badge/python-3.9%2B-blue)
4
- ![License](https://img.shields.io/github/license/abhinav9444/commitflow)
4
+ ![License](https://img.shields.io/badge/license-MIT-blue.svg)
5
+ ![Build](https://github.com/abhinav9444/commitflow/actions/workflows/tests.yml/badge.svg)
5
6
  ![Tests](https://img.shields.io/github/actions/workflow/status/abhinav9444/commitflow/tests.yml)
6
- <!--
7
7
  ![PyPI](https://img.shields.io/pypi/v/commitflow)
8
8
 
9
- -->
10
9
  CommitFlow is a lightweight command-line tool that helps developers maintain consistent Git commits automatically without interrupting their workflow .
11
10
  It provides a simple interface to commit progress, automate daily commits and keep your GitHub contribution graph active while you focus on actual development.
12
11
 
@@ -1,16 +1,32 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: commitflow
3
- Version: 1.0.0
3
+ Version: 1.0.2
4
4
  Summary: CLI tool for maintaining consistent Git commits automatically
5
+ Home-page: https://github.com/abhinav9444/commitflow
5
6
  Author: Abhinav Kumar Singh
7
+ Author-email: abhinavksinghofc@gmail.com
8
+ License: MIT
9
+ Project-URL: Source, https://github.com/abhinav9444/commitflow
10
+ Project-URL: Issues, https://github.com/abhinav9444/commitflow/issues
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Environment :: Console
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Topic :: Software Development :: Version Control :: Git
6
17
  Requires-Python: >=3.8
7
18
  Description-Content-Type: text/markdown
8
19
  License-File: LICENSE
9
20
  Requires-Dist: colorama
10
21
  Dynamic: author
22
+ Dynamic: author-email
23
+ Dynamic: classifier
11
24
  Dynamic: description
12
25
  Dynamic: description-content-type
26
+ Dynamic: home-page
27
+ Dynamic: license
13
28
  Dynamic: license-file
29
+ Dynamic: project-url
14
30
  Dynamic: requires-dist
15
31
  Dynamic: requires-python
16
32
  Dynamic: summary
@@ -18,12 +34,11 @@ Dynamic: summary
18
34
  # CommitFlow
19
35
 
20
36
  ![Python](https://img.shields.io/badge/python-3.9%2B-blue)
21
- ![License](https://img.shields.io/github/license/abhinav9444/commitflow)
37
+ ![License](https://img.shields.io/badge/license-MIT-blue.svg)
38
+ ![Build](https://github.com/abhinav9444/commitflow/actions/workflows/tests.yml/badge.svg)
22
39
  ![Tests](https://img.shields.io/github/actions/workflow/status/abhinav9444/commitflow/tests.yml)
23
- <!--
24
40
  ![PyPI](https://img.shields.io/pypi/v/commitflow)
25
41
 
26
- -->
27
42
  CommitFlow is a lightweight command-line tool that helps developers maintain consistent Git commits automatically without interrupting their workflow .
28
43
  It provides a simple interface to commit progress, automate daily commits and keep your GitHub contribution graph active while you focus on actual development.
29
44
 
@@ -62,7 +62,7 @@ setup(
62
62
 
63
63
  name="commitflow",
64
64
 
65
- version="1.0.0",
65
+ version="1.0.2", # version bumped for PyPI update
66
66
 
67
67
  description="CLI tool for maintaining consistent Git commits automatically",
68
68
 
@@ -72,6 +72,12 @@ setup(
72
72
 
73
73
  author="Abhinav Kumar Singh",
74
74
 
75
+ author_email="abhinavksinghofc@gmail.com",
76
+
77
+ url="https://github.com/abhinav9444/commitflow",
78
+
79
+ license="MIT",
80
+
75
81
  packages=find_packages(),
76
82
 
77
83
  install_requires=[
@@ -86,4 +92,18 @@ setup(
86
92
 
87
93
  python_requires=">=3.8",
88
94
 
95
+ project_urls={
96
+ "Source": "https://github.com/abhinav9444/commitflow",
97
+ "Issues": "https://github.com/abhinav9444/commitflow/issues",
98
+ },
99
+
100
+ classifiers=[
101
+ "Programming Language :: Python :: 3",
102
+ "License :: OSI Approved :: MIT License",
103
+ "Operating System :: OS Independent",
104
+ "Environment :: Console",
105
+ "Intended Audience :: Developers",
106
+ "Topic :: Software Development :: Version Control :: Git",
107
+ ],
108
+
89
109
  )
File without changes
File without changes