-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (28 loc) · 1004 Bytes
/
setup.py
File metadata and controls
34 lines (28 loc) · 1004 Bytes
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
"""Setuptools entry point."""
import os
from setuptools import setup
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3 :: Only'
]
def long_description():
with open(os.path.abspath(os.path.join(os.path.dirname(__file__), 'README.rst'))) as f:
return f.read()
setup(
name='timeout-timer',
version='0.2.0',
description='Timeout timer use signal or thread module, support nested loop',
long_description=long_description(),
author='dozysun',
author_email='dozysun@gmail.com',
url='https://github.com/dozysun/timeout-timer',
packages=['timeout_timer'],
install_requires=[],
classifiers=CLASSIFIERS)