-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 963 Bytes
/
setup.py
File metadata and controls
37 lines (34 loc) · 963 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
35
36
37
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
with open('README.md', 'r', encoding='utf-8') as f:
README = f.read()
setuptools.setup(
name='TimerThread',
version='0.1.1',
description='A lightweight task scheduling timer',
author='Yi Zhang',
author_email='yizhang.dev@gmail.com',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/yzhang-dev/TimerThread',
download_url='https://github.com/yzhang-dev/TimerThread',
packages=[
'timerthread'
],
keywords=[
'timer',
'background-jobs',
'background-thread',
'tasks',
'background'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
license='MIT',
python_requires='>=3.7',
)