Skip to content

Commit 4a74420

Browse files
authored
fix: corrected entrypoint name (#4)
Has a dash, not an underscore. Signed-off-by: Henry Schreiner <[email protected]>
1 parent 19a4ab8 commit 4a74420

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ readme = "README.md"
1515
requires-python = ">=3.10"
1616

1717
classifiers = [
18-
"License :: OSI Approved :: BSD License",
19-
"Topic :: Scientific/Engineering",
20-
"Intended Audience :: Science/Research",
18+
"Topic :: Software Development :: Libraries :: Python Modules",
19+
"Topic :: Software Development :: Quality Assurance",
2120
"Intended Audience :: Developers",
2221
"Operating System :: OS Independent",
2322
"License :: OSI Approved :: Apache Software License",
@@ -45,7 +44,7 @@ homepage = "https://github.com/henryiii/flake8-errmsg"
4544
[project.scripts]
4645
flake8-errmsg = "flake8_errmsg:main"
4746

48-
[project.entry_points."flake8.extension"]
47+
[project.entry-points."flake8.extension"]
4948
EM = "flake8_errmsg:ErrMsgASTPlugin"
5049

5150

src/flake8_errmsg/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

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

20-
__version__ = "0.2.2"
20+
__version__ = "0.2.3"
2121

2222

2323
class Flake8ASTErrorInfo(NamedTuple):

0 commit comments

Comments
 (0)