Update dependency check in setup.py

Signed-off-by: Gora Khargosh <gora.khargosh@gmail.com>
1 file changed
tree: 4effc9cdeaaa930d4a2ed7aaf19b8175ef58f4cc
  1. doc/
  2. watchdog/
  3. .gitignore
  4. AUTHORS
  5. bootstrap
  6. bootstrap.py
  7. buildout.cfg
  8. LICENSE
  9. MANIFEST.in
  10. README.md
  11. setup.py
  12. watchmedo
  13. watchmedo.bat
README.md

Watchdog

Python API to monitor file system events.

Example Usage:

Introduction:

Watchdog lets your Python programs monitor filesystem events as portably as possible using:

  • inotify on Linux
  • FSEvents on Mac OS X
  • kqueue on BSD/OS X
  • ReadDirectoryChangesW on Windows
  • polling the directory for snapshots periodically and comparing them as a fallback mechanism (slowest)

Dependencies:

  1. pywin32 (only on Windows)
  2. pyinotify (only on Linux)
  3. XCode or gcc (only on Mac OS X)
  4. PyYAML
  5. argh
  6. select_backport (for Python2.5/2.6 on BSD/Mac OS X)

Licensing:

Watchdog is licensed under the terms of the MIT License

Copyright (C) 2010 Gora Khargosh <gora.khargosh@gmail.com> and the Watchdog authors.

Project source code on Github