diff --git a/HACKING b/HACKING index 49f3a60e1..7ea569da8 100644 --- a/HACKING +++ b/HACKING @@ -128,6 +128,8 @@ infrastructure in place for it from the start. Use it like this: * *Modernizer* - HTML5 and CSS3 feature detection +* *Psutil* - Convenience functions for managing processes + * *Python3* - Requires minimum 3.3, tested with version 3.4.1 * *Twitter Bootstrap* - A responsive, mobile first front-end framework diff --git a/INSTALL b/INSTALL index 65fbf1421..e71c785a9 100644 --- a/INSTALL +++ b/INSTALL @@ -23,6 +23,7 @@ python3-django \ python3-django-stronghold \ python3-gi \ + python3-psutil \ python3-setuptools \ python3-yaml \ gir1.2-glib-2.0 \ diff --git a/requirements.txt b/requirements.txt index bc305e450..eb0ff243f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,6 @@ cherrypy >= 3.0 coverage >= 3.7 django >= 1.7.0 django-stronghold +psutil python-augeas pyyaml diff --git a/setup.py b/setup.py index 1912e5c5e..17b45c61a 100755 --- a/setup.py +++ b/setup.py @@ -116,6 +116,7 @@ setuptools.setup( 'django >= 1.7.0', 'django-bootstrap-form', 'django-stronghold', + 'psutil', 'python-augeas', 'pyyaml', ],