chore: more cleanup
This commit is contained in:
parent
461f806488
commit
519005e625
8 changed files with 29 additions and 34 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -17,3 +17,6 @@ build
|
|||
.history
|
||||
.tox
|
||||
pip-wheel-metadata
|
||||
.eggs/
|
||||
exe/
|
||||
installer/Output/
|
||||
|
|
12
Pipfile
12
Pipfile
|
@ -1,12 +0,0 @@
|
|||
[[source]]
|
||||
name = "pypi"
|
||||
url = "https://pypi.org/simple"
|
||||
verify_ssl = true
|
||||
|
||||
[dev-packages]
|
||||
|
||||
[packages]
|
||||
ed-lrr-gui = {path = "."}
|
||||
|
||||
[requires]
|
||||
python_version = "3.7"
|
24
Pipfile.lock
generated
Normal file
24
Pipfile.lock
generated
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"_meta": {
|
||||
"hash": {
|
||||
"sha256": "49acc8c3ea047d6a35faed08243dba88a571bfc7112957089d5d1ae634249f98"
|
||||
},
|
||||
"pipfile-spec": 6,
|
||||
"requires": {
|
||||
"python_version": "3.7"
|
||||
},
|
||||
"sources": [
|
||||
{
|
||||
"name": "pypi",
|
||||
"url": "https://pypi.org/simple",
|
||||
"verify_ssl": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"default": {
|
||||
"ed-lrr-gui": {
|
||||
"path": "."
|
||||
}
|
||||
},
|
||||
"develop": {}
|
||||
}
|
10
build.bat
10
build.bat
|
@ -1,10 +0,0 @@
|
|||
@echo off
|
||||
:: TODO: convert to python script
|
||||
:: set up new conda env, install packages, build, remove conda env
|
||||
call conda create -y -n ed_lrr python=3 pycrypto || exit /b 1
|
||||
call conda activate ed_lrr || exit /b 1
|
||||
call conda install -y -c conda-forge nuitka
|
||||
vcvars x64
|
||||
python build.py
|
||||
call conda deactivate || exit /b 1
|
||||
call conda env remove -n ed_lrr || exit /b 1
|
|
@ -1,5 +0,0 @@
|
|||
rm -rfv _*.pyd *.egg-info pip-wheel-metadata dist exe build __pycache__
|
||||
cd rust
|
||||
cargo clean
|
||||
cargo clean --release
|
||||
cd ..
|
4
test.bat
4
test.bat
|
@ -1,4 +0,0 @@
|
|||
python build_gui.py
|
||||
pip uninstall -y ed_lrr_gui
|
||||
pip install -e .
|
||||
ed_lrr_gui
|
|
@ -1 +0,0 @@
|
|||
python build_gui.py && python ed_lrr_gui/__main__.py
|
Loading…
Reference in a new issue