Skip to content

Commit

Permalink
Updating requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
scallister committed Dec 14, 2017
1 parent f9a6b07 commit 86d56d1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A plugin oriented tool for automating the investigation of broken hosts and serv

## Why?
Many of the initial troubleshooting tasks humans perform during an oncall escalation are the same between escalations. Fossor is a tool for automating these investigation steps. Common investigation steps can be placed into plugins that then report back to the user if they have unexpected output when Fossor is run. Unlike humans which perform tasks in serial, Fossor runs its plugins in parallel as separate processes. Output is streamed back asynchronously to the user for immediate interpretation as each plugin finishes.
### Examples of common tasks:
### Examples of common investigative tasks:
Checking for:
- New errors in a process's logs
- New dmesg messages
Expand Down
5 changes: 4 additions & 1 deletion dev_requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
pytest==3.0.6
pytest>=3.0.6
flake8>=3.5.0
mock>=2.0.0
pytest-timeout>=1.2.0
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
asciietch==1.0.0
flake8==3.5.0
click==6.7
psutil==5.4.1
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,20 @@
license='License :: OSI Approved :: BSD License',
packages=find_packages(),
install_requires=[
'flake8==3.5.0',
'asciietch==1.0.1',
'click==6.7',
'psutil==5.4.1',
'pytest-timeout==1.2.0',
'setproctitle==1.1.10',
'requests==2.18.4',
'mock==2.0.0',
'humanfriendly==4.4.1',
'parsedatetime==2.4',
'PTable==0.9.2',
],
tests_require=[
'pytest==3.0.6',
'pytest>=3.0.6',
'flake8>=3.5.0',
'mock>=2.0.0'
'pytest-timeout>=1.2.0',
],
entry_points={
'console_scripts': [
Expand Down

0 comments on commit 86d56d1

Please sign in to comment.