|
|
@ -16,15 +16,6 @@ except Exception:
|
|
|
|
long_description = ""
|
|
|
|
long_description = ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CustomBuild(build):
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
|
|
|
|
management.call_command("compilemessages", verbosity=1)
|
|
|
|
|
|
|
|
build.run(self)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cmdclass = {"build": CustomBuild}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
setup(
|
|
|
|
name="pretix-poos",
|
|
|
|
name="pretix-poos",
|
|
|
|
version=__version__,
|
|
|
|
version=__version__,
|
|
|
@ -32,12 +23,11 @@ setup(
|
|
|
|
long_description=long_description,
|
|
|
|
long_description=long_description,
|
|
|
|
url="GitHub repository URL",
|
|
|
|
url="GitHub repository URL",
|
|
|
|
author="n0emis",
|
|
|
|
author="n0emis",
|
|
|
|
author_email="git@N0emis.eu",
|
|
|
|
author_email="git@n0emis.eu",
|
|
|
|
license="Apache",
|
|
|
|
license="Apache",
|
|
|
|
install_requires=[],
|
|
|
|
install_requires=[],
|
|
|
|
packages=find_packages(exclude=["tests", "tests.*"]),
|
|
|
|
packages=find_packages(exclude=["tests", "tests.*"]),
|
|
|
|
include_package_data=True,
|
|
|
|
include_package_data=True,
|
|
|
|
cmdclass=cmdclass,
|
|
|
|
|
|
|
|
entry_points="""
|
|
|
|
entry_points="""
|
|
|
|
[pretix.plugin]
|
|
|
|
[pretix.plugin]
|
|
|
|
pretix_poos=pretix_poos:PretixPluginMeta
|
|
|
|
pretix_poos=pretix_poos:PretixPluginMeta
|
|
|
|