diff options
| author | Georgi Sabev <georgethebeatle@gmail.com> | 2018-03-18 11:00:12 +0200 |
|---|---|---|
| committer | Georgi Sabev <georgethebeatle@gmail.com> | 2018-03-18 11:00:12 +0200 |
| commit | 4f924fca750f90f75acfd5589ac601783c9f12af (patch) | |
| tree | d248651290b03e5d618adeab991b7856888aad74 /setup.py | |
| parent | 448b70f271fd783b8cace3511288883d1a632072 (diff) | |
Add helper scripts for Mac OSX
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -1,3 +1,4 @@ +import os, subprocess from setuptools import setup, find_packages setup( @@ -11,3 +12,12 @@ setup( author_email="reiner@reiner-h.de", license="GPLv2+", ) + +if(os.uname().sysname == "Darwin"): + project_dir = os.path.dirname(os.path.realpath(__file__)) + mac_setup_script = os.path.join(project_dir, "scripts", "osx_check.sh") + subprocess.check_call(mac_setup_script) + print("################################################") + print("OSX Installation Notice") + print("################################################") + print("In order to fully complete the installation, run 'sudo scripts/osx_post_install.sh'") |
