Skip to content

Commit

Permalink
fix: corrected entrypoint name (#4)
Browse files Browse the repository at this point in the history
Has a dash, not an underscore.

Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
  • Loading branch information
henryiii committed Sep 6, 2022
1 parent 19a4ab8 commit 4a74420
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ readme = "README.md"
requires-python = ">=3.10"

classifiers = [
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
Expand Down Expand Up @@ -45,7 +44,7 @@ homepage = "https://github.com/henryiii/flake8-errmsg"
[project.scripts]
flake8-errmsg = "flake8_errmsg:main"

[project.entry_points."flake8.extension"]
[project.entry-points."flake8.extension"]
EM = "flake8_errmsg:ErrMsgASTPlugin"


Expand Down
2 changes: 1 addition & 1 deletion src/flake8_errmsg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

__all__ = ("__version__", "run_on_file", "main", "ErrMsgASTPlugin")

__version__ = "0.2.2"
__version__ = "0.2.3"


class Flake8ASTErrorInfo(NamedTuple):
Expand Down

0 comments on commit 4a74420

Please sign in to comment.