mirror of
https://seed.flo-the.dev/z3gWc1qgaeZaoGwL4WTstLNoqjayM.git
synced 2025-12-06 04:47:35 +01:00
original script
taken from https://www.hackitu.de/smtprd under GNU AGPL 3.0 Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
This commit is contained in:
21
setup.py
Normal file
21
setup.py
Normal file
@@ -0,0 +1,21 @@
|
||||
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,
|
||||
)
|
||||
Reference in New Issue
Block a user