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