Files
Draupnir/synapse_antispam/setup.py
2025-02-02 11:06:57 +00:00

16 lines
422 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.1.0", # 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=[],
)