| Server IP : 85.214.239.14 / Your IP : 216.73.216.189 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/cwd/proc/3/cwd/proc/3/task/3/root/srv/automx/automx-master/ |
Upload File : |
#!/usr/bin/env python
from distutils.core import setup
setup(name='automx',
description='Provides account configuration data to mailclients',
url='https://github.com/sys4/automx',
author_email='c@roessner.co',
maintainer='Christian Roessner',
keywords=['wsgi', 'autoconfig', 'autodiscover', 'mobileconfig'],
license='GNU GPLv3',
version='1.1.1',
py_modules=['automx_wsgi'],
packages=['automx'],
package_dir={'': 'src'},
data_files=[('/etc', ['src/conf/automx.conf'])],
scripts=['src/automx-test'],
requires=['future', 'lxml', 'ipaddress'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Communications :: Email',
'Topic :: Utilities',
]
)