mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
12 lines
236 B
Python
12 lines
236 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="mjolnir",
|
|
version="0.0.1",
|
|
packages=find_packages(),
|
|
description="Mjolnir Antispam",
|
|
include_package_data=True,
|
|
zip_safe=True,
|
|
install_requires=[],
|
|
)
|