diff --git a/README.rst b/README.rst index 3a3373d..025c04f 100644 --- a/README.rst +++ b/README.rst @@ -37,8 +37,6 @@ environment variable. If this variable is not set, pynetdot will try to load This file will be read when you import pynetdot module. -You'll need the PyYAML module installed. - If you are using Kerberos Single Sign-On authentication for your netdot page, you may set your credentials like this: diff --git a/setup.py b/setup.py index f9e7a0f..fdac5a9 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ packages=['pynetdot', 'pynetdot/models'], - install_requires=['python-dateutil', 'requests'], - requires=['dateutil', 'requests'], + install_requires=['python-dateutil', 'requests', 'PyYAML'], + requires=['dateutil', 'requests', 'yaml'], )