mirror of
https://github.com/the-draupnir-project/Draupnir.git
synced 2026-05-12 10:34:52 +00:00
12 lines
325 B
Python
12 lines
325 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="mjolnir",
|
|
version="1.80.0-beta.0", # 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=[],
|
|
)
|