forked from isbg/isbg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·31 lines (28 loc) · 982 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
31
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
from setuptools import setup
import os
ldesc = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
setup(
name='isbg',
version='0.99',
description=('a script that makes it easy to scan an IMAP inbox for spam using SpamAssassin and get your spam moved to another folder.'),
long_description=ldesc,
keywords='email imap spamassasin filter',
author='Thomas Lecavelier',
author_email='[email protected]',
license='See LICENCE file.',
scripts=['isbg.py'],
url='http://redmine.ookook.fr/projects/isbg/wiki',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Communications :: Email :: Post-Office :: IMAP',
'Topic :: Communications :: Email :: Filters',
'Topic :: Utilities',
]
)