diff options
| author | aschey <[email protected]> | 2019-12-01 14:28:23 -0600 |
|---|---|---|
| committer | aschey <[email protected]> | 2019-12-01 14:28:23 -0600 |
| commit | 85526b657107c8fa08861a6c6ef3790c5bc14fac (patch) | |
| tree | e1881785495c3e6fc5b5fa1c7b23b26737072090 /setup.py | |
| parent | added features for saving user themes and loading random themes (diff) | |
| parent | Merge pull request #457 from LoLei/456-fix-FileNotFoundError (diff) | |
| download | pywal-85526b657107c8fa08861a6c6ef3790c5bc14fac.tar.xz pywal-85526b657107c8fa08861a6c6ef3790c5bc14fac.zip | |
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__ |