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
|
# -*- coding: utf-8 -*-
"""
======
stopit
======
Raise asynchronous exceptions in other thread, control the timeout of blocks
or callables with a context manager or a decorator.
"""
import os
from setuptools import setup, find_packages
version = '1.1.2'
this_directory = os.path.abspath(os.path.dirname(__file__))
def read(*names):
return open(os.path.join(this_directory, *names), 'r').read().strip()
long_description = read('README.rst') + '\n\n' + read('CHANGES.rst')
setup(name='stopit',
version=version,
description="Timeout control decorator and context managers, raise any exception in another thread",
long_description=long_description,
classifiers=[
"Topic :: Utilities",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable"
],
keywords='threads timeout',
author='Gilles Lenfant',
author_email='gilles.lenfant@gmail.com',
url='http://pypi.python.org/pypi/stopit',
license='GPLv3',
packages=find_packages('src'),
package_dir={'': 'src'},
test_suite='tests.suite',
zip_safe=False
)
|