mjolnir/synapse_antispam/setup.py

12 lines
317 B
Python
Raw Normal View History

2019-10-25 19:32:05 +00:00
from setuptools import setup, find_packages
setup(
name="mjolnir",
2023-01-11 10:02:29 +00:00
version="1.6.3", # version automated in package.json - Do not edit this line, use `yarn version`.
2019-10-25 19:32:05 +00:00
packages=find_packages(),
description="Mjolnir Antispam",
include_package_data=True,
zip_safe=True,
install_requires=[],
)