diff options
| author | aschey <aschey13@gmail.com> | 2019-12-01 14:28:23 -0600 |
|---|---|---|
| committer | aschey <aschey13@gmail.com> | 2019-12-01 14:28:23 -0600 |
| commit | 85526b657107c8fa08861a6c6ef3790c5bc14fac (patch) | |
| tree | e1881785495c3e6fc5b5fa1c7b23b26737072090 /setup.py | |
| parent | 788533e5c20132c727e2f287dce6ada64ebd5872 (diff) | |
| parent | c18f4014f969504deaeb692aa88660ee4cb10f3f (diff) | |
Merge branch 'master' into theme_save
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,11 +1,12 @@ """wal - setup.py""" +import sys import setuptools try: import pywal except ImportError: print("error: pywal requires Python 3.5 or greater.") - quit(1) + sys.exit(1) LONG_DESC = open('README.md').read() VERSION = pywal.__version__ |
