Files
2026-05-28 14:34:24 +02:00

28 lines
736 B
Python

#!/usr/bin/env python
import os
from distutils.core import setup
with open(os.path.join(os.path.dirname(__file__), "requirements.txt")) as f:
requires = f.read().splitlines()
setup(
name="libmailgoose",
version="1.4.5",
description="libmailgoose - check the settings needed to protect against e-mail spoofing",
author="CERT Polska",
author_email="info@cert.pl",
license="BSD",
url="https://github.com/CERT-Polska/mailgoose",
packages=["libmailgoose"],
package_data={"": ["languages.txt"]},
include_package_data=True,
scripts=[],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
],
install_requires=requires,
)