1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2024-05-06 01:08:17 +00:00
pretalx-plugin-broadcast-tools/setup.py

47 lines
1.2 KiB
Python
Raw Normal View History

2021-11-20 08:05:08 +00:00
import os
from distutils.command.build import build
from django.core import management
from setuptools import find_packages, setup
try:
with open(
os.path.join(os.path.dirname(__file__), "README.rst"), encoding="utf-8"
) as f:
long_description = f.read()
except FileNotFoundError:
long_description = ""
class CustomBuild(build):
def run(self):
management.call_command("compilemessages", verbosity=1)
build.run(self)
cmdclass = {"build": CustomBuild}
setup(
name="pretalx-plugin-broadcast-tools",
2021-12-25 08:54:35 +00:00
version="0.3,0",
2021-11-21 07:06:35 +00:00
description=(
"Some tools which can be used for supporting a broadcasting "
"software, for example a 'lower third' page which can be "
"embedded into your broadcasting software"
2021-11-21 07:06:35 +00:00
),
2021-11-20 08:05:08 +00:00
long_description=long_description,
url="https://github.com/Kunsi/pretalx-plugin-broadcast-tools",
2021-11-20 08:05:08 +00:00
author="kunsi",
author_email="git@kunsmann.eu",
license="Apache Software License",
install_requires=[],
packages=find_packages(exclude=["tests", "tests.*"]),
include_package_data=True,
cmdclass=cmdclass,
entry_points="""
[pretalx.plugin]
pretalx_broadcast_tools=pretalx_broadcast_tools:PretalxPluginMeta
2021-11-20 08:05:08 +00:00
""",
)