mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-03-30 19:05:39 +00:00
16 lines
429 B
Python
16 lines
429 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.3.0-beta.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=[],
|
|
)
|