forked from amarao/thread_timeout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 793 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
#!/usr/bin/python
import os.path
import codecs
from setuptools import setup, find_packages
def read(fname):
return codecs.open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='thread_timeout',
version="0.1",
description='''Decorator to execute functionin in separate thread with timeout''',
long_description=read("README.rst"),
author='George Shuklin',
author_email='[email protected]',
url='https://github.com/amarao/thread_timeout',
packages=find_packages(),
install_requires=['wrapt'],
license='LGPL',
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Topic :: Software Development :: Libraries",
],
)