diff options
author | Gavin Wahl <gwahl@fusionbox.com> | 2015-04-23 10:42:57 -0600 |
---|---|---|
committer | Gavin Wahl <gwahl@fusionbox.com> | 2015-04-23 10:43:26 -0600 |
commit | a91323b135f26b42eb826984968aa7dcfa8716ab (patch) | |
tree | 24bdfe6d2309cd8a2b9034887794d4517849be3e /setup.py | |
parent | ba2c6c17ea58c7300515ac0b3f443788b4d288df (diff) | |
download | django-pyscss-a91323b135f26b42eb826984968aa7dcfa8716ab.tar.gz |
Explicitly require pathlib (See #33)
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -13,6 +13,12 @@ install_requires = [ 'Django>=1.4', 'pyScss>=1.3.4', ] + +try: + import pathlib +except ImportError: + install_requires.append('pathlib') + tests_require = [ 'Pillow', 'django-compressor>=1.3', |