fix naming convention

This commit is contained in:
Andreas Frisch 2020-03-27 13:09:15 +01:00
parent 9837dbeab3
commit b9d3326560
9 changed files with 6 additions and 6 deletions

View file

@ -1,3 +1,3 @@
recursive-include byro-schaffenburg/static * recursive-include byro_schaffenburg/static *
recursive-include byro-schaffenburg/templates * recursive-include byro_schaffenburg/templates *
recursive-include byro-schaffenburg/locale * recursive-include byro_schaffenburg/locale *

View file

@ -3,7 +3,7 @@ from django.utils.translation import ugettext_lazy
class PluginApp(AppConfig): class PluginApp(AppConfig):
name = 'byro-schaffenburg' name = 'byro_schaffenburg'
verbose_name = 'Schaffenburg e.V. Byro Plugin' verbose_name = 'Schaffenburg e.V. Byro Plugin'
class ByroPluginMeta: class ByroPluginMeta:
@ -17,4 +17,4 @@ class PluginApp(AppConfig):
from . import signals # NOQA from . import signals # NOQA
default_app_config = 'byro-schaffenburg.PluginApp' default_app_config = 'byro_schaffenburg.PluginApp'

View file

@ -39,6 +39,6 @@ setup(
cmdclass=cmdclass, cmdclass=cmdclass,
entry_points=""" entry_points="""
[byro.plugin] [byro.plugin]
byro-schaffenburg=byro-schaffenburg:ByroPluginMeta byro_schaffenburg=byro_schaffenburg:ByroPluginMeta
""", """,
) )