mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2025-01-19 17:26:46 +01:00
12 lines
294 B
Python
12 lines
294 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(
|
||
|
name="matrix-synapse-smtp-auth",
|
||
|
version="0.1.0",
|
||
|
py_modules=['smtp_auth_provider'],
|
||
|
author="Daniel Løvbrøtte Olsen",
|
||
|
author_email="danio@pvv.ntnu.no",
|
||
|
description="An SMTP auth provider for Synapse",
|
||
|
license="AGPL-3.0-only"
|
||
|
)
|