Skip to content

Commit da55889

Browse files
add Makefile and .gitignore
1 parent 636332a commit da55889

File tree

7 files changed

+36
-0
lines changed

7 files changed

+36
-0
lines changed

.gitignore

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

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
install:
2+
uv sync
3+
brain-games:
4+
uv run brain-games
5+
build:
6+
uv build
7+
package-install:
8+
uv tool install dist/*.whl

hexlet_code.egg-info/PKG-INFO

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Metadata-Version: 2.1
2+
Name: hexlet-code
3+
Version: 0.1.0
4+
Summary: Add your description here
5+
Requires-Python: >=3.12
6+
Description-Content-Type: text/markdown
7+
8+
### Hexlet tests and linter status:
9+
[![Actions Status](https://github.com/ivanvasutinskiy/python-project-49/actions/workflows/hexlet-check.yml/badge.svg)](https://github.com/ivanvasutinskiy/python-project-49/actions)

hexlet_code.egg-info/SOURCES.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
README.md
2+
pyproject.toml
3+
brain_games/__init__.py
4+
brain_games/scripts/__init__.py
5+
brain_games/scripts/brain_games.py
6+
hexlet_code.egg-info/PKG-INFO
7+
hexlet_code.egg-info/SOURCES.txt
8+
hexlet_code.egg-info/dependency_links.txt
9+
hexlet_code.egg-info/top_level.txt
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

hexlet_code.egg-info/top_level.txt

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

uv.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)