diff --git a/.gitignore b/.gitignore index e13d82f..1eb02d6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ auxiliary/ *.html *.stackdump +.staging +.* # Byte-compiled / optimized / DLL files __pycache__/ @@ -29,6 +31,7 @@ share/python-wheels/ *.egg-info/ .installed.cfg *.egg +*.whl MANIFEST # PyInstaller diff --git a/README.md b/README.md index bbe1303..7f9d449 100644 --- a/README.md +++ b/README.md @@ -17,18 +17,16 @@ Make sure that python has been added to the *PATH* environment variable (tick th And run the `install.bat` file -Or open the terminal (e.g. PowerShell), cd into the folder, and install it. +Or open the terminal (e.g. PowerShell) and run the following command ``` -cd .\production_planner-master\ -pip install . +pip install git+https://github.com/mitaa/production_planner.git#egg=production_planner ``` ## Usage Run the `run.bat` file -Or open the terminal (the current directory doesn't matter as long as python has been added to *PATH*)\ -And then run +Or open the terminal and run ``` production_planner diff --git a/install.bat b/install.bat index 8ee3004..3701ce8 100644 --- a/install.bat +++ b/install.bat @@ -1,2 +1,2 @@ -pip install . +pip install git+https://github.com/mitaa/production_planner.git#egg=production_planner pause