We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2764816 commit 826482eCopy full SHA for 826482e
β.gitignoreβ
@@ -1,2 +1,13 @@
1
# IDE
2
.vscode/
3
+
4
+# Environment
5
+.venv
6
7
+# Byte-compiled files
8
+__pycache__/
9
10
+# Distribution / packaging files
11
+build/
12
+dist/
13
+*.egg-info/
β.python-versionβ
@@ -0,0 +1 @@
+3.12.0
βpyproject.tomlβ
@@ -0,0 +1,16 @@
+[build-system]
+requires = ["setuptools"]
+build-backend = "setuptools.build_meta"
+# Project metadata (PEP 621)
+# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
+[project]
+name = "python-gitmojis"
+version = "0.0.0"
+requires-python = ">= 3.10"
+dependencies = []
14
+[tool.setuptools.packages.find]
15
+include = ["gitmojis*"]
16
+where = ["src"]
βsrc/gitmojis/__init__.pyβ
0 commit comments