chore: more cleanup

This commit is contained in:
Daniel S. 2019-09-20 17:44:33 +02:00
parent 461f806488
commit 519005e625
8 changed files with 29 additions and 34 deletions

View File

@ -15,7 +15,7 @@ options:
- other
- docs
commit_groups:
title_maps:
title_maps:
feat: Features
fix: Bug Fixes
perf: Performance Improvements
@ -31,4 +31,4 @@ options:
- Subject
notes:
keywords:
- BREAKING CHANGE
- BREAKING CHANGE

3
.gitignore vendored
View File

@ -17,3 +17,6 @@ build
.history
.tox
pip-wheel-metadata
.eggs/
exe/
installer/Output/

12
Pipfile
View File

@ -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
View 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": {}
}

View File

@ -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

View File

@ -1,5 +0,0 @@
rm -rfv _*.pyd *.egg-info pip-wheel-metadata dist exe build __pycache__
cd rust
cargo clean
cargo clean --release
cd ..

View File

@ -1,4 +0,0 @@
python build_gui.py
pip uninstall -y ed_lrr_gui
pip install -e .
ed_lrr_gui

View File

@ -1 +0,0 @@
python build_gui.py && python ed_lrr_gui/__main__.py