Skip to content

Commit

Permalink
Build information
Browse files Browse the repository at this point in the history
  • Loading branch information
ZenithVal committed Feb 19, 2024
1 parent 5396166 commit 9fb3128
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

*build/
*dist/
Controllers/__pycache__/DataController.cpython-310.pyc
Controllers/__pycache__/PackageController.cpython-310.pyc
Controllers/__pycache__/ThreadController.cpython-310.pyc
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from cx_Freeze import setup, Executable
#change any area that says change me
#update items in "Summary_Data"
#update version numbers on new releases, i took the liberty of doing 2.1.1 for a new exe/installer
#update version numbers on new releases.

# Dependencies are automatically detected, but it might need
# fine tuning.
Expand Down Expand Up @@ -38,7 +38,7 @@
msi_data = {
"Directory": directory_table,
"ProgId": [
("Prog.Id", "2.1.1", None, "A program to control an avatar with a leash over OSC", "IconId", None),
("Prog.Id", "2.1.1", None, "VRChat OSC tool to move the player in the direction of a stretched Physbone", "IconId", None),
],
"Icon": [
("IconId", "Resources\VRChatOSCLeash.ico"),
Expand All @@ -56,16 +56,16 @@
"install_icon": "Resources\VRChatOSCLeash.ico",
#update the details tab in the MSI properties, these are the only values alloted
"summary_data": {
"author": "Change Me",
"comments": "Change Me",
"keywords": "VRCat, OSC, Leash, UwU",
"author": "Various Authors",
"comments": "https://github.com/ZenithVal/OSCLeash/releases",
"keywords": "VRChat, OSC, Leash, OSCLeash",
},
}

#setting for the EXE, and options for python setup.py <options>
setup(name='OSCLeash',
version = '2.1.1',
description = 'A program to control an avatar with a leash over OSC',
description = 'VRChat OSC tool to move the player in the direction of a stretched Physbone',
license = "MIT License",
options = {
'build_exe': build_options,
Expand Down

0 comments on commit 9fb3128

Please sign in to comment.