forked from Snawoot/postfix-mta-sts-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.5 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='postfix_mta_sts_resolver',
version='0.2.7',
description='Daemon which provides TLS client policy for Postfix via socketmap, according to domain MTA-STS policy',
url='https://github.com/Snawoot/postfix-mta-sts-resolver',
author='Vladislav Yarmak',
author_email='[email protected]',
license='MIT',
packages=['postfix_mta_sts_resolver'],
python_requires='>=3.5.3',
setup_requires=[
'wheel',
],
install_requires=[
'pynetstring>=0.1.dev2',
'aiodns>=1.1.1',
'aiohttp>=3.4.4',
'PyYAML>=3.12',
],
scripts=[
'mta-sts-daemon',
'mta-sts-query',
],
classifiers=[
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Topic :: Communications :: Email :: Mail Transport Agents",
"Topic :: Internet",
"Topic :: Security",
],
long_description=long_description,
long_description_content_type='text/markdown',
zip_safe=True)