Skip to content

Commit 826482e

Browse files
authored
πŸ—οΈ Set up the virtual environment and the project's layout (#2)
1 parent 2764816 commit 826482e

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

β€Ž.gitignoreβ€Ž

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,13 @@
11
# IDE
22
.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β€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12.0

β€Žpyproject.tomlβ€Ž

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"
4+
5+
# Project metadata (PEP 621)
6+
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/
7+
8+
[project]
9+
name = "python-gitmojis"
10+
version = "0.0.0"
11+
requires-python = ">= 3.10"
12+
dependencies = []
13+
14+
[tool.setuptools.packages.find]
15+
include = ["gitmojis*"]
16+
where = ["src"]

β€Žsrc/gitmojis/__init__.pyβ€Ž

Whitespace-only changes.

0 commit comments

Comments
Β (0)