diff --git a/.chglog/config.yml b/.chglog/config.yml index 7a42b92..04fafe0 100644 --- a/.chglog/config.yml +++ b/.chglog/config.yml @@ -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 \ No newline at end of file + - BREAKING CHANGE diff --git a/.gitignore b/.gitignore index f0cdfd5..3264073 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,6 @@ build .history .tox pip-wheel-metadata +.eggs/ +exe/ +installer/Output/ diff --git a/Pipfile b/Pipfile deleted file mode 100644 index d3f6c2a..0000000 --- a/Pipfile +++ /dev/null @@ -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" diff --git a/Pipfile.lock b/Pipfile.lock new file mode 100644 index 0000000..66964ed --- /dev/null +++ b/Pipfile.lock @@ -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": {} +} diff --git a/build.bat b/build.bat deleted file mode 100644 index 7f064ec..0000000 --- a/build.bat +++ /dev/null @@ -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 \ No newline at end of file diff --git a/clean.bat b/clean.bat deleted file mode 100644 index 20a9545..0000000 --- a/clean.bat +++ /dev/null @@ -1,5 +0,0 @@ -rm -rfv _*.pyd *.egg-info pip-wheel-metadata dist exe build __pycache__ -cd rust -cargo clean -cargo clean --release -cd .. diff --git a/test.bat b/test.bat deleted file mode 100644 index b7cddb8..0000000 --- a/test.bat +++ /dev/null @@ -1,4 +0,0 @@ -python build_gui.py -pip uninstall -y ed_lrr_gui -pip install -e . -ed_lrr_gui diff --git a/test_gui.bat b/test_gui.bat deleted file mode 100644 index 5051fac..0000000 --- a/test_gui.bat +++ /dev/null @@ -1 +0,0 @@ -python build_gui.py && python ed_lrr_gui/__main__.py \ No newline at end of file