forked from disqus/postfix-stats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1022 Bytes
/
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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='postfix-stats',
version='0.3.2',
author='DISQUS',
author_email='[email protected]',
url='http://github.com/disqus/postfix-stats',
description = 'Simple threaded stats aggregator for Postfix. When running as a syslog destination, it can be used to get realtime cumulative stats.',
zip_safe=False,
scripts=['postfix_stats.py'],
license='Apache License 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Topic :: Communications :: Email :: Mail Transport Agents',
'Topic :: System :: Monitoring',
],
keywords='postfix stats',
)