aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: dbc7ebc0cd944dfb55bcb48c8246312325dee32d (plain)
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
# -*- coding: utf-8 -*-
import sys

try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup


CLASSIFIERS=[
    'Development Status :: 4 - Beta',
    'Intended Audience :: Developers',
    'License :: OSI Approved :: MIT License',
    'Natural Language :: English',
    'Operating System :: OS Independent',
    'Programming Language :: Python',
    'Topic :: Software Development :: Libraries :: Python Modules'
    ]

setup( 
        name='timeout-decorator',
        version='0.2.1',
        description='Timeout decorator',
        long_description = open('README.md').read(),
        author='PN',
        author_email='pn.appdev@gmail.com',
        url='https://github.com/pnpnpn/timeout-decorator',
        packages=['timeout_decorator'],
        install_requires=[],
        classifiers=CLASSIFIERS)