Commit fb6156ee authored by Luke Macken's avatar Luke Macken

No more dependency hell

parent 22c400b0
...@@ -6,18 +6,6 @@ f = open('README.rst') ...@@ -6,18 +6,6 @@ f = open('README.rst')
long_description = f.read().split('split here')[1] long_description = f.read().split('split here')[1]
f.close() f.close()
try:
from meliae import version_info
except ImportError:
print "We require meliae to be installed."
exit(1)
try:
from gi.repository import GLib, GObject, Pango, Gtk, WebKit
except ImportError:
print "We require python-gobject-dev installed. Use: apt-get install python-gobject-dev"
exit(1)
setup(name='pyrasite', setup(name='pyrasite',
version=version, version=version,
description="Inject code into a running Python process", description="Inject code into a running Python process",
...@@ -30,13 +18,7 @@ setup(name='pyrasite', ...@@ -30,13 +18,7 @@ setup(name='pyrasite',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True, include_package_data=True,
zip_safe=False, zip_safe=False,
install_requires=[ install_requires=[],
"Cython", # Needed for meliae
"meliae",
"pycallgraph",
"psutil",
"Sphinx",
],
tests_require=['nose'], tests_require=['nose'],
test_suite='nose.collector', test_suite='nose.collector',
entry_points=""" entry_points="""
......
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