diff options
author | David Luevano <55825613+luevano@users.noreply.github.com> | 2019-10-12 01:34:08 -0600 |
---|---|---|
committer | David Luevano <55825613+luevano@users.noreply.github.com> | 2019-10-12 01:34:08 -0600 |
commit | b54bed3ab48ddea6dc87e7a16d94f70b99a8a133 (patch) | |
tree | fa4aa0dec9323cfe2a2dc2ed860e1d677555ecd7 | |
parent | 5da96ab2f3ac91c429f20e73a0f579ad2a5b7053 (diff) |
Fix REQUIRED
-rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -44,9 +44,9 @@ VERSION = __version__ # VERSION = '0.0.1' # What packages are required for this module to be executed? -REQUIRED = [ - # 'requests', 'maya', 'records', -] +REQUIRED = ['beautifulsoup4', + 'requests', + 'urllib3'] # What packages are optional? EXTRAS = { |