-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsetup.py
executable file
·35 lines (33 loc) · 1.37 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
#!/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='[email protected]',
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',
]
)