Commit 7a9ec6dc authored by Luke Macken's avatar Luke Macken

Merge branch 'master' into develop

parents 0c68f570 5645d5ad
......@@ -10,6 +10,8 @@ Requirements
- gdb (https://www.gnu.org/s/gdb) (version 7.3+)
- Cython (http://cython.org)
- meliae (https://launchpad.net/meliae)
- easy_install/pip may not work for this install. If not, use the tarball from the distribution website
Download
~~~~~~~~
......
......@@ -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