From 89d68eec7cf33ab575e6db1a19fe1969c8f9976b Mon Sep 17 00:00:00 2001 From: Ryan Fobel <ryan@fobel.net> Date: Tue, 10 Nov 2015 12:57:46 -0500 Subject: [PATCH] Remove 'pycairo' and 'pygtk' package requirements These packages are still technically required, but they do not install nicely via pip (so there is no advantage to including them) and including them causes errors when installing this package on Linux. --- .gitignore | 2 -- pavement.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 90d4eeb..a819e33 100644 --- a/.gitignore +++ b/.gitignore @@ -6,8 +6,6 @@ Breakpoints_v2.xcbkptlist *.pyc *.pyo *~ -/dstat-interface/dist/ -/dstat-interface/build/ RELEASE-VERSION paver-minilib.zip dist diff --git a/pavement.py b/pavement.py index 4402f75..4492db8 100644 --- a/pavement.py +++ b/pavement.py @@ -17,7 +17,7 @@ setup(name='dstat-interface', url='https://github.com/wheeler-microfluidics/dstat-interface', license='GPL', packages=['dstat_interface', ], - install_requires=['matplotlib', 'numpy', 'pycairo', 'pyserial', 'pygtk', + install_requires=['matplotlib', 'numpy', 'pyserial', 'pygobject', 'pyzmq'], # Install data listed in `MANIFEST.in` include_package_data=True) -- GitLab