diff options
| -rw-r--r-- | setup.py | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -22,8 +22,11 @@ use_setuptools() from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) -README = open(os.path.join(here, 'README.txt')).read() -CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() +try: + README = open(os.path.join(here, 'README.txt')).read() + CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() +except IOError: + README = CHANGES = '' install_requires=[ 'chameleon.core [lxml]', |
