Skip to content

Commit

Permalink
Update documentation (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
twstagg authored Feb 21, 2023
1 parent b73fb5a commit 5653c9f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
12 changes: 9 additions & 3 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,26 @@ RimSort is built in Python using the [PySide2](https://pypi.org/project/PySide2/
* [xmltodict](https://pypi.org/project/xmltodict/): parse RimWorld `xml` files. Install version `0.13.0` if possible. You can do this by running `pip3 install xmltodict==0.13.0`.
* [toposort](https://pypi.org/project/toposort/): sort mods! Install version `1.9` if possible. You can do this by running `pip3 install toposort==1.9`.

You can install all of the above dependencies by executing the command at the project root:

`pip install -r requirements.txt`

#### Running the App

First, clone this repository to a local directory.
Inside the local directory, run `python3 app.py`.
Then, from the project root, execute `python3 app.py`

#### Packaging the App

First, clone this repository to a local directory.

* Packaging for mac: inside the local directory, run `pyinstaller --clean --windowed --noconfirm app.py`. Open the newly bundled app by going opening `./dist/app.app`.
* Packaging with `pyinstaller`:
* From the project root, execute `pyinstaller app.spec app.py` - this will compile a binary release for your platform.
* You can find the bundled application by navigating to `./dist/app.app`

#### Developing Features


Please discuss with maintainers first, but we are tracking features and issues related to RimSort in the Github repo's "Issues" tab

#### Misc Coding Style

Expand Down
4 changes: 0 additions & 4 deletions FEATURES.md

This file was deleted.

4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pyinstaller==5.7.0
PySide2==5.15.2.1
toposort==1.9
xmltodict==0.13.0

0 comments on commit 5653c9f

Please sign in to comment.