Files
Draupnir/synapse_antispam/setup.py
2024-05-29 12:35:18 +01:00

12 lines
324 B
Python

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