mjolnir/synapse_antispam/setup.py
David Teller 6abc8a7c4e v1.6.2
2023-01-02 12:40:27 +01:00

12 lines
317 B
Python

from setuptools import setup, find_packages
setup(
name="mjolnir",
version="1.6.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=[],
)