Skip to content

Commit

Permalink
Merge pull request #91 from m2-farzan/fix-psutil-dependency
Browse files Browse the repository at this point in the history
Add psutil dependency
  • Loading branch information
dheera authored Dec 1, 2021
2 parents 86cfa55 + b803254 commit c6df39e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ This project makes use of a number of open-source libraries which the author is
- [simplejpeg](https://gitlab.com/jfolz/simplejpeg): Used for encoding and decoding JPEG format.
Copyright (C) Joachim Folz
MIT License

- [psutil](https://github.com/giampaolo/psutil) - Used for monitoring system resource utilization.
Copyright (C) Giampaolo Rodola
BSD 3-clause license

- [Masonry](https://masonry.desandro.com/): Used for laying out cards on the page.
Copyright (C) David DeSandro
Expand Down
1 change: 0 additions & 1 deletion rosboard/subscribers/processes_subscriber.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env python3

import psutil
import re
import select
import subprocess
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
'setuptools',
'tornado>=4.2.1',
],
extras_require = {
'system_stats': ['psutil'],
},
package_data={
'rosboard': [
'html/*',
Expand Down

0 comments on commit c6df39e

Please sign in to comment.