Commit 746e66ee authored by Rick Yazwinski's avatar Rick Yazwinski

check for pre-install of meliae, abort gracefully if not found

parent d9c6da75
......@@ -6,6 +6,12 @@ f = open('README.rst')
long_description = f.read().split('split here')[1]
f.close()
try:
from meliae import version_info
except ImportError:
print "We require meliae to be installed."
exit(1)
setup(name='pyrasite',
version=version,
description="Inject code into a running Python process",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment