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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Installation and build information for isbg."""
import ast
import os
import re
import sys
from setuptools import setup
# We get the isbg README.rst as package long description:
with open(os.path.join(os.path.dirname(__file__), 'README.rst'), 'rb') as f:
LDESC = f.read().decode('utf-8')
# We get the version from isbg/isbg.py:
_VERSION_RE = re.compile(r'__version__\s+=\s+(.*)')
with open(os.path.join(os.path.dirname(__file__), 'isbg/isbg.py'), 'rb') as f:
_VERSION = str(ast.literal_eval(_VERSION_RE.search(
f.read().decode('utf-8')).group(1)))
# Only setup_require pytest-runner when test are called
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
setup(
name='isbg',
version=_VERSION, # to change it, change isbg/isbg.py: __version__
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,
long_description_content_type="text/x-rst",
keywords='email imap spamassasin filter',
author='ISBG contributors (see CONTRIBUTORS file)',
author_email='isbg@python.org',
license='GPLv3',
packages=['isbg'],
entry_points={
'console_scripts': [
'isbg = isbg.__main__:main',
'isbg_sa_unwrap = isbg.sa_unwrap:isbg_sa_unwrap',
]
},
install_requires=['docopt'],
extras_require={
'chardet': ['chardet'],
'cchardet': ['cchardet'],
},
setup_requires=pytest_runner,
tests_require=['pytest', 'mock', 'pytest-cov'],
url='https://gitlab.com/isbg/isbg',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Email :: Post-Office :: IMAP',
'Topic :: Communications :: Email :: Filters',
'Topic :: Utilities',
]
)
|