Skip to content
This repository was archived by the owner on Oct 20, 2025. It is now read-only.

Commit c18ebb6

Browse files
Add initial project files and dependencies
0 parents  commit c18ebb6

File tree

30 files changed

+1581
-0
lines changed

30 files changed

+1581
-0
lines changed
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: Build and Release
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
tags:
7+
- 'v*'
8+
pull_request:
9+
branches: [ "main" ]
10+
workflow_dispatch:
11+
12+
jobs:
13+
build:
14+
runs-on: windows-latest
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
19+
- name: Set up Python
20+
uses: actions/setup-python@v2
21+
with:
22+
python-version: '3.9'
23+
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
pip install -r requirements.txt
28+
pip install pyinstaller
29+
30+
- name: Build with PyInstaller
31+
run: pyinstaller nikke_ocr.spec
32+
33+
- name: Create Release
34+
if: startsWith(github.ref, 'refs/tags/v')
35+
id: create_release
36+
uses: actions/create-release@v1
37+
env:
38+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39+
with:
40+
tag_name: ${{ github.ref }}
41+
release_name: Release ${{ github.ref }}
42+
draft: false
43+
prerelease: false
44+
45+
- name: Upload Release Asset
46+
if: startsWith(github.ref, 'refs/tags/v')
47+
uses: actions/upload-release-asset@v1
48+
env:
49+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
50+
with:
51+
upload_url: ${{ steps.create_release.outputs.upload_url }}
52+
asset_path: ./dist/nikke-ocr.exe
53+
asset_name: nikke-ocr.exe
54+
asset_content_type: application/octet-stream
55+
56+
- name: Upload artifact for debugging
57+
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
58+
uses: actions/upload-artifact@v2
59+
with:
60+
name: nikke-ocr
61+
path: ./dist/nikke-ocr.exe

.gitignore

Lines changed: 162 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
share/python-wheels/
24+
*.egg-info/
25+
.installed.cfg
26+
*.egg
27+
MANIFEST
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.nox/
43+
.coverage
44+
.coverage.*
45+
.cache
46+
nosetests.xml
47+
coverage.xml
48+
*.cover
49+
*.py,cover
50+
.hypothesis/
51+
.pytest_cache/
52+
cover/
53+
54+
# Translations
55+
*.mo
56+
*.pot
57+
58+
# Django stuff:
59+
*.log
60+
local_settings.py
61+
db.sqlite3
62+
db.sqlite3-journal
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# PyBuilder
75+
.pybuilder/
76+
target/
77+
78+
# Jupyter Notebook
79+
.ipynb_checkpoints
80+
81+
# IPython
82+
profile_default/
83+
ipython_config.py
84+
85+
# pyenv
86+
# For a library or package, you might want to ignore these files since the code is
87+
# intended to run in multiple environments; otherwise, check them in:
88+
# .python-version
89+
90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
97+
# poetry
98+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
99+
# This is especially recommended for binary packages to ensure reproducibility, and is more
100+
# commonly ignored for libraries.
101+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
102+
#poetry.lock
103+
104+
# pdm
105+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
106+
#pdm.lock
107+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108+
# in version control.
109+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
110+
.pdm.toml
111+
.pdm-python
112+
.pdm-build/
113+
114+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115+
__pypackages__/
116+
117+
# Celery stuff
118+
celerybeat-schedule
119+
celerybeat.pid
120+
121+
# SageMath parsed files
122+
*.sage.py
123+
124+
# Environments
125+
.env
126+
.venv
127+
env/
128+
venv/
129+
ENV/
130+
env.bak/
131+
venv.bak/
132+
133+
# Spyder project settings
134+
.spyderproject
135+
.spyproject
136+
137+
# Rope project settings
138+
.ropeproject
139+
140+
# mkdocs documentation
141+
/site
142+
143+
# mypy
144+
.mypy_cache/
145+
.dmypy.json
146+
dmypy.json
147+
148+
# Pyre type checker
149+
.pyre/
150+
151+
# pytype static type analyzer
152+
.pytype/
153+
154+
# Cython debug symbols
155+
cython_debug/
156+
157+
# PyCharm
158+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
159+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
160+
# and can be added to the global gitignore or merged into this file. For a more nuclear
161+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
162+
#.idea/

.vscode/settings.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"editor.formatOnPaste": true,
4+
"editor.rulers": [
5+
80,
6+
120
7+
],
8+
"files.trimTrailingWhitespace": true,
9+
"files.insertFinalNewline": true,
10+
"python.languageServer": "Pylance",
11+
"python.testing.pytestEnabled": true,
12+
"python.testing.unittestEnabled": false,
13+
"[python]": {
14+
"editor.defaultFormatter": "ms-python.black-formatter",
15+
"editor.tabSize": 4,
16+
"editor.insertSpaces": true,
17+
"editor.wordBasedSuggestions": "allDocuments",
18+
"editor.codeActionsOnSave": {
19+
"source.organizeImports": "explicit"
20+
}
21+
},
22+
"python.analysis.typeCheckingMode": "basic",
23+
"python.envFile": "${workspaceFolder}/.env",
24+
"git.enableSmartCommit": true,
25+
"git.autofetch": true,
26+
"terminal.integrated.defaultProfile.windows": "Command Prompt",
27+
"workbench.iconTheme": "material-icon-theme",
28+
"workbench.colorTheme": "One Dark Pro",
29+
"python.linting.enabled": true,
30+
"python.linting.pylintEnabled": true,
31+
"python.linting.pylintArgs": [
32+
"--disable=C0111"
33+
],
34+
"python.sortImports.args": [
35+
"--profile",
36+
"black"
37+
],
38+
"editor.codeActionsOnSave": {
39+
"source.organizeImports": "explicit"
40+
}
41+
}

.vscode/tasks.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Setup Development Environment",
6+
"type": "shell",
7+
"command": "${workspaceFolder}/scripts/setup.bat",
8+
"windows": {
9+
"command": "${workspaceFolder}\\scripts\\setup.bat"
10+
},
11+
"presentation": {
12+
"reveal": "always",
13+
"panel": "new"
14+
},
15+
"problemMatcher": []
16+
},
17+
{
18+
"label": "Build Local Executable",
19+
"type": "shell",
20+
"command": "${workspaceFolder}/scripts/build.bat",
21+
"windows": {
22+
"command": "${workspaceFolder}\\scripts\\build.bat"
23+
},
24+
"presentation": {
25+
"reveal": "always",
26+
"panel": "new"
27+
},
28+
"problemMatcher": []
29+
}
30+
]
31+
}

launcher.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import sys
2+
3+
import pyuac
4+
5+
from src.main import main
6+
7+
if __name__ == "__main__":
8+
if not pyuac.isUserAdmin():
9+
pyuac.runAsAdmin()
10+
else:
11+
main()

requirements/dev.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pyuac
2+
isort
3+
autoflake
4+
pypiwin32
5+
pyinstaller

requirements/prod.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
PyQt5==5.15.11
2+
PyQt5-Qt5==5.15.2
3+
easyocr==1.7.2
4+
numpy==1.26.4
5+
opencv-contrib-python==4.10.0.84
6+
opencv-python==4.10.0.84
7+
opencv-python-headless==4.10.0.84
8+
scikit-image==0.24.0
9+
pynput==1.7.7
10+
PyAutoGUI==0.9.54
11+
requests==2.32.3

resources/icon.png

15.8 KB
Loading
6.05 KB
Loading
6.07 KB
Loading

0 commit comments

Comments
 (0)