mirror of
https://seed.flo-the.dev/z3gWc1qgaeZaoGwL4WTstLNoqjayM.git
synced 2025-12-06 12:57:35 +01:00
taken from https://www.hackitu.de/smtprd under GNU AGPL 3.0 Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
22 lines
594 B
Python
22 lines
594 B
Python
try:
|
|
from distutils.core import setup
|
|
except ImportError:
|
|
from setuptools import setup
|
|
|
|
name = "smtprd"
|
|
url = "https://www.hackitu.de/smtprd/"
|
|
requirements = open("requirements.txt", "r").read().splitlines(keepends=False)
|
|
|
|
setup(
|
|
name=name,
|
|
version="0.1",
|
|
description="SMTP forwarding relay daemon",
|
|
classifiers=["License :: OSI Approved :: GNU Affero General Public License v3"],
|
|
author=url,
|
|
author_email="@",
|
|
url=url,
|
|
scripts=[name + ".py"],
|
|
entry_points={"console_scripts": ["{}={}:main".format(name, name)]},
|
|
install_requires=requirements,
|
|
)
|