Skip to content

Commit

Permalink
build deps
Browse files Browse the repository at this point in the history
  • Loading branch information
lubaskinc0de committed Dec 5, 2024
1 parent 5700e8b commit ee4ec10
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
pip install -e .
```

2. установить pyinstaller
2. установить зависимости сборки
```
pip install pyinstaller
pip install -e ".[build]"
```

3. собрать бинарник
Expand All @@ -72,6 +72,12 @@ pip install pyinstaller
pyinstaller student-journal.spec
```

или

```
make all
```

Известные проблемы:

1. ``DLL load failed ...``
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ ci = [
'pytest==8.3.3',
'ruff==0.8.0',
]
build = [
'pyinstaller==6.11.1',
]

[tool.setuptools.packages.find]
where = ["src"]
Expand Down

0 comments on commit ee4ec10

Please sign in to comment.