From 723519f6a96d422e863708f4d96fd07f5511eb2b Mon Sep 17 00:00:00 2001 From: Alessio Sergi Date: Mon, 26 Dec 2016 19:00:00 +0100 Subject: setup.py: get_requires() no longer needed We dropped support for Python 2.6 and curses interface on Windows. --- setup.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 4ca8722d..2e2bf0b0 100755 --- a/setup.py +++ b/setup.py @@ -37,12 +37,6 @@ def get_data_files(): return data_files -def get_requires(): - requires = ['psutil>=2.0.0'] - - return requires - - class tests(Command): user_options = [] @@ -74,7 +68,7 @@ setup( url='https://github.com/nicolargo/glances', license="LGPL", keywords="cli curses monitoring system", - install_requires=get_requires(), + install_requires=['psutil>=2.0.0'], extras_require={ 'WEB': ['bottle', 'requests'], 'SENSORS': ['py3sensors'], -- cgit v1.2.3