Skip to content

Commit eccf3ba

Browse files
committed
debugging
1 parent cbe85e2 commit eccf3ba

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

install_binary.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,4 @@ def get_binary():
126126
make_executable(str(out_path / exe))
127127

128128

129-
if __name__ == '__main__':
130-
get_binary()
129+
get_binary()

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
author='thautawarm',
2020
author_email='[email protected]',
2121
packages=find_packages(),
22-
entry_points={
23-
"console_scripts": ['pspy-blueprint=pspy_proxy.proxy:main']
24-
},
22+
entry_points={"console_scripts": ['pspy-blueprint=pspy_proxy.proxy:main']},
2523
# above option specifies what commands to install,
2624
# e.g: entry_points={"console_scripts": ["yapypy=yapypy.cmd:compiler"]}
2725
install_requires=['purescripto>=0.7.3', 'requests'], # dependencies
@@ -37,4 +35,5 @@
3735
zip_safe=False,
3836
)
3937

38+
print("Installing binaries...")
4039
call([sys.executable, str(Path(__file__).parent / "install_binary.py")])

0 commit comments

Comments
 (0)