python-gitmojis 0.1.1__tar.gz → 0.1.3__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 (19) hide show
  1. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/PKG-INFO +3 -3
  2. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/README.md +2 -2
  3. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/pyproject.toml +1 -3
  4. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/src/python_gitmojis.egg-info/PKG-INFO +3 -3
  5. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/LICENSE +0 -0
  6. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/requirements.txt +0 -0
  7. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/setup.cfg +0 -0
  8. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/src/gitmojis/__init__.py +0 -0
  9. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/src/gitmojis/core.py +0 -0
  10. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/src/gitmojis/exceptions.py +0 -0
  11. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/src/gitmojis/helpers.py +0 -0
  12. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/src/gitmojis/typing.py +0 -0
  13. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/src/python_gitmojis.egg-info/SOURCES.txt +0 -0
  14. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/src/python_gitmojis.egg-info/dependency_links.txt +0 -0
  15. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/src/python_gitmojis.egg-info/requires.txt +0 -0
  16. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/src/python_gitmojis.egg-info/top_level.txt +0 -0
  17. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/tests/test_core.py +0 -0
  18. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/tests/test_helpers.py +0 -0
  19. {python-gitmojis-0.1.1 → python-gitmojis-0.1.3}/tests/test_package.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-gitmojis
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: 🐍 A small package to apply and manage Gitmojis in your projects 😜
5
5
  Author-email: Kamil Paduszyński <paduszyk@gmail.com>
6
6
  Maintainer-email: Kamil Paduszyński <paduszyk@gmail.com>
@@ -57,10 +57,10 @@ The still-growing popularity of the *Gitmoji* guide is reflected in the numerous
57
57
 
58
58
  ## Installation
59
59
 
60
- To install `python-gitmoji`, use `pip`:
60
+ To install `python-gitmojis`, use `pip`:
61
61
 
62
62
  ```console
63
- $ pip install python-gitmoji
63
+ $ pip install python-gitmojis
64
64
  ```
65
65
 
66
66
  or any other dependency manager you like.
@@ -24,10 +24,10 @@ The still-growing popularity of the *Gitmoji* guide is reflected in the numerous
24
24
 
25
25
  ## Installation
26
26
 
27
- To install `python-gitmoji`, use `pip`:
27
+ To install `python-gitmojis`, use `pip`:
28
28
 
29
29
  ```console
30
- $ pip install python-gitmoji
30
+ $ pip install python-gitmojis
31
31
  ```
32
32
 
33
33
  or any other dependency manager you like.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "python-gitmojis"
7
- version = "0.1.1"
7
+ version = "0.1.3"
8
8
  description = "🐍 A small package to apply and manage Gitmojis in your projects 😜"
9
9
  readme = "README.md"
10
10
  requires-python = ">= 3.7"
@@ -70,7 +70,6 @@ find = { include = ["gitmojis*"], where = ["src"] }
70
70
  dependencies = { file = "requirements.txt" }
71
71
 
72
72
  [tool.black]
73
- target-version = ["py311"]
74
73
  line-length = 88
75
74
 
76
75
  [tool.mypy]
@@ -78,7 +77,6 @@ exclude = "(build)"
78
77
  ignore_missing_imports = true
79
78
 
80
79
  [tool.ruff]
81
- target-version = "py311"
82
80
  line-length = 88
83
81
  select = [
84
82
  "F", # pyflakes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-gitmojis
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: 🐍 A small package to apply and manage Gitmojis in your projects 😜
5
5
  Author-email: Kamil Paduszyński <paduszyk@gmail.com>
6
6
  Maintainer-email: Kamil Paduszyński <paduszyk@gmail.com>
@@ -57,10 +57,10 @@ The still-growing popularity of the *Gitmoji* guide is reflected in the numerous
57
57
 
58
58
  ## Installation
59
59
 
60
- To install `python-gitmoji`, use `pip`:
60
+ To install `python-gitmojis`, use `pip`:
61
61
 
62
62
  ```console
63
- $ pip install python-gitmoji
63
+ $ pip install python-gitmojis
64
64
  ```
65
65
 
66
66
  or any other dependency manager you like.
File without changes