Skip to content

Commit

Permalink
Add more known 3rd party modules
Browse files Browse the repository at this point in the history
  • Loading branch information
harahu authored and arkq committed Jun 7, 2022
1 parent 368d0b1 commit 4ee2e86
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/flake8_requirements/checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from .modules import STDLIB_PY3

# NOTE: Changing this number will alter package version as well.
__version__ = "1.5.3"
__version__ = "1.5.4"
__license__ = "MIT"

LOG = getLogger('flake8.plugin.requirements')
Expand Down
7 changes: 6 additions & 1 deletion src/flake8_requirements/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,9 +511,11 @@
# but it depends on allure-python-commons which provides it. User
# will most likely specify allure-pytest as a dependency, though.
"allure-pytest": ["allure"],
"attrs": ["attr"],
"attrs": ["attr", "attrs"],
"awesome_slugify": ["slugify"],
"azure-storage-blob": ["azure"],
"beautifulsoup4": ["bs4"],
"cattrs": ["cattr"],
"cx_oracle": ["cx_Oracle"],
"databricks-connect": ["pyspark"],
"django-ajax-selects": ["ajax_select"],
Expand Down Expand Up @@ -543,12 +545,15 @@
"pyjwt": ["jwt"],
"pymongo": ["bson", "gridfs", "pymongo"],
"pyopenssl": ["OpenSSL"],
"pytest": ["pytest", "_pytest"],
"python-dateutil": ["dateutil"],
"pyyaml": ["yaml"],
"scikit-learn": ["sklearn"],
"scikit-fda": ["skfda"],
"setuptools": ["pkg_resources", "setuptools"],
"sorl-thumbnail": ["sorl"],
"splunk_sdk": ["splunklib"],
"tensorboardx": ["tensorboardX"],
"umap-learn": ["umap"],
"xlwt_future": ["xlwt"],
}

0 comments on commit 4ee2e86

Please sign in to comment.