11"""Setuptools entry point."""
22import os
33
4- try :
5- from setuptools import setup
6- except ImportError :
7- from distutils .core import setup
4+ from setuptools import setup
85
9- CLASSIFIERS = """
10- Development Status :: 1 - Beta
11- Intended Audience :: Developers
12- License :: OSI Approved :: MIT License
13- Programming Language :: C
14- Programming Language :: Python :: 3
15- Programming Language :: Python :: 3.6
16- Programming Language :: Python :: 3.7
17- Programming Language :: Python :: 3.8
18- Programming Language :: Python :: 3.9
19- Programming Language :: Python :: 3 :: Only
20- """
6+ CLASSIFIERS = [
7+ 'Development Status :: 4 - Beta' ,
8+ 'Intended Audience :: Developers' ,
9+ 'License :: OSI Approved :: MIT License' ,
10+ 'Programming Language :: Python :: 3' ,
11+ 'Programming Language :: Python :: 3.6' ,
12+ 'Programming Language :: Python :: 3.7' ,
13+ 'Programming Language :: Python :: 3.8' ,
14+ 'Programming Language :: Python :: 3.9' ,
15+ 'Programming Language :: Python :: 3 :: Only'
16+ ]
2117
2218
2319def long_description ():
@@ -27,7 +23,7 @@ def long_description():
2723
2824setup (
2925 name = 'timeout-timer' ,
30- version = '0.1.0 ' ,
26+ version = '0.1.1 ' ,
3127 description = 'Timeout timer use signal or thread module, support nested loop' ,
3228 long_description = long_description (),
3329 author = 'dozysun' ,
0 commit comments