Files
Draupnir/synapse_antispam/setup.py
2025-04-14 18:36:42 +01:00

16 lines
429 B
Python

# SPDX-FileCopyrightText: 2019 The Matrix.org Foundation C.I.C.
#
# SPDX-License-Identifier: Apache-2.0
from setuptools import setup, find_packages
setup(
name="mjolnir",
version="2.3.0-beta.2", # version automated in package.json - Do not edit this line, use `yarn version`.
packages=find_packages(),
description="Mjolnir Antispam",
include_package_data=True,
zip_safe=True,
install_requires=[],
)